1234567891011121314151617181920212223 |
- install:
- pip install . --no-deps --upgrade
- build_sdist:
- @python setup.py build sdist
- deploy: build_sdist
- ./deploy_latest.sh
- test_deploy: build_sdist
- REPO=pypitest ./deploy_latest.sh
- get_version:
- @printf "v"
- @python setup.py --version
- run_tests:
- python tests/main.py
- run_coverage:
- @coverage run tests/main.py
- coverage html
- coverage report -m
|