diff options
author | Sriram Viswanathan <sriramv@thoughtworks.com> | 2017-03-29 19:13:50 -0300 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2017-03-30 13:52:58 -0300 |
commit | f46ae977970e5cb21a22ded01213a760d9ae3d82 (patch) | |
tree | d607769d5e8e30c0e72bfa2c1f743dcb5d8165ee /Makefile | |
parent | b4863e988a760315fa70aaf652c1e1bfde63903e (diff) |
[#1018] Upgrades twisted from 16.1.1 to 17.1.0
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |