We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2653f18 commit 9398696Copy full SHA for 9398696
1 file changed
Makefile
@@ -6,13 +6,11 @@ venv: clean
6
virtualenv --python=python venv
7
8
install: venv
9
+ . venv/bin/activate; pip install -r test/requirements.txt
10
. venv/bin/activate; python setup.py install
11
. venv/bin/activate; pip install -r requirements.txt
12
-test-install: install
13
- . venv/bin/activate; pip install -r test/requirements.txt
14
-
15
-test: test-install
+test: install
16
. venv/bin/activate; coverage run -m unittest discover -s test/unit
17
18
test-integ: test
0 commit comments