Explorar el Código

Makefile includes ci-pyflakes target now

Tim Bielawa hace 8 años
padre
commit
3fcdee6750
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      utils/Makefile

+ 7 - 1
utils/Makefile

@@ -65,6 +65,12 @@ ci-list-deps:
 	@echo "#############################################"
 	. $(NAME)env/bin/activate && pip freeze
 
+ci-pyflakes:
+	@echo "#################################################"
+	@echo "# Running Pyflakes Compliance Tests in virtualenv"
+	@echo "#################################################"
+	. $(NAME)env/bin/activate && pyflakes src/ooinstall/*.py
+
 ci-pep8:
 	@echo "#############################################"
 	@echo "# Running PEP8 Compliance Tests in virtualenv"
@@ -79,5 +85,5 @@ ci-pep8-real:
 	. $(NAME)env/bin/activate && pep8 --ignore=E501,E121,E124 src/$(SHORTNAME)/
 
 
-ci: clean virtualenv ci-list-deps ci-pylint ci-pep8 ci-unittests
+ci: clean virtualenv ci-list-deps ci-pylint ci-pep8 ci-unittests ci-pyflakes
 	: