Merge pull request #44 from wilddeej/master
[diaspy.git] / Makefile
... / ...
CommitLineData
1.PHONY: style-check test
2
3style-check:
4 flake8 --max-complexity 6 ./diaspy/
5
6test:
7 python3 -m unittest --verbose --catch --failfast tests.py
8
9test-python2:
10 python2 -m unittest --verbose --catch --failfast tests
11
12clean:
13 rm -v ./{diaspy/,}*.pyc
14 rm -rv ./{diaspy/,}__pycache__/
15
16install:
17 python setup.py install
18 rm -rvf dist/
19 rm -rvf diaspy.egg-info