a | b/Makefile | ||
---|---|---|---|
1 | lint: |
||
2 | pylint --disable=R,C deidentify scripts |
||
3 | |||
4 | lintall: |
||
5 | pylint deidentify scripts |
||
6 | |||
7 | lintci: |
||
8 | pylint --disable=R,C,W deidentify scripts || (echo "lintci failed with $$?"; exit 1) |
||
9 | |||
10 | test: |
||
11 | pytest --doctest-modules --cov-report html --cov=deidentify deidentify/ tests/ |
||
12 | |||
13 | publish: |
||
14 | pip install --upgrade setuptools wheel twine |
||
15 | python setup.py verify |
||
16 | python setup.py sdist bdist_wheel |
||
17 | twine upload dist/* |
||
18 | rm -fr build dist .egg deidentify.egg-info |