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 e37a396 commit 850777fCopy full SHA for 850777f
Makefile
@@ -6,6 +6,11 @@ lint:
6
@if [ ! -f flake8 ]; then $(PY) -m pip install flake8; fi
7
flake8
8
9
+.PHONY: test
10
+test:
11
+ @if [ ! -f pytest ]; then $(PY) -m pip install pytest; fi
12
+ pytest -s ./tests/test_api.py
13
+
14
.PHONY: del
15
del:
16
@if [ -d ./dist ]; then rm -r ./dist/; fi
@@ -18,7 +23,7 @@ install: del
18
23
19
24
.PHONY: release
20
25
release: del
21
- $(PY) setup.py sdist bdist_wheel
26
+ $(PY) setup.py sdist bdist_wheel
22
27
twine upload dist/*
28
29
.PHONY: clean
tests/io_test.py
tests/jog_test.py
tests/state_test.py
0 commit comments