Commit | Line | Data |
---|---|---|
385e7ebe MM |
1 | .PHONY: style-check test |
2 | ||
3 | style-check: | |
e0056129 | 4 | flake8 --max-complexity 6 ./diaspy/ |
385e7ebe MM |
5 | |
6 | test: | |
7 | python3 -m unittest --verbose --catch --failfast tests.py | |
62f1912f MM |
8 | |
9 | test-python2: | |
beaa09fb MM |
10 | python2 -m unittest --verbose --catch --failfast tests.py |
11 | ||
12 | clean: | |
240a85ae MM |
13 | rm -rv diaspy/__pycache__/ |
14 | rm -rv diaspy/*.pyc | |
15 | rm -rv ./__pycache__/ | |
16 | rm -rv *.pyc |