summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-03-29 19:13:50 -0300
committerTulio Casagrande <tcasagra@thoughtworks.com>2017-03-30 13:52:58 -0300
commitf46ae977970e5cb21a22ded01213a760d9ae3d82 (patch)
treed607769d5e8e30c0e72bfa2c1f743dcb5d8165ee /Makefile
parentb4863e988a760315fa70aaf652c1e1bfde63903e (diff)
[#1018] Upgrades twisted from 16.1.1 to 17.1.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index df0902c3..ccad7d5b 100644
--- a/Makefile
+++ b/Makefile
@@ -54,6 +54,7 @@ linters_js:
coverage:
@. $(VIRTUALENV)/bin/activate;\
cd service;\
+ export PYTHONPATH=$(PYTHONPATH):`pwd`;\
coverage run -p --source=pixelated `which trial` test.unit;\
coverage run -p --source=pixelated `which trial` test.integration;\
coverage combine;\
@@ -62,6 +63,7 @@ coverage:
unit_tests_py:
@. $(VIRTUALENV)/bin/activate;\
cd service;\
+ export PYTHONPATH=$(PYTHONPATH):`pwd`;\
trial --reporter=text test.unit
unit_tests_js:
@@ -71,6 +73,7 @@ unit_tests_js:
integration_tests_py:
@. $(VIRTUALENV)/bin/activate;\
cd service;\
+ export PYTHONPATH=$(PYTHONPATH):`pwd`;\
trial --reporter=text test.integration
functional_tests: clean requirements install