summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSriram Viswanathan <sriramv@thoughtworks.com>2017-03-29 19:13:50 -0300
committerSriram Viswanathan <sriramv@thoughtworks.com>2017-03-29 19:13:50 -0300
commita02f52c35a7d087ef25a40a2a2275cfd544941ef (patch)
tree6cf7ed05f0da6afd6d4b99ecad7dd4c4b8cc848f /Makefile
parent3616a6b950b0fb9d3e4842f90878d0beb4d5bc3f (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