We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac6fde commit f876bacCopy full SHA for f876bac
Makefile
@@ -3,3 +3,16 @@ dist:
3
python setup.py sdist bdist_wheel
4
5
.PHONY: dist
6
+
7
+.venv:
8
+ @virtualenv .venv
9
10
+test: .venv
11
+ @pip install -r test-requirements.txt
12
+ @pip install --editable .
13
+ @pytest tests
14
+.PHONY: test
15
16
+tox-test:
17
+ @sh ./scripts/runtox.sh
18
+.PHONY: tox-test
test-requirements.txt
@@ -0,0 +1,7 @@
1
+hypothesis==3.69.9
2
+pytest==3.7.3
+pytest-xdist==1.23.0
+six==1.11.0
+tox==3.2.1
+Werkzeug==0.14.1
+pytest-localserver==0.4.1
0 commit comments