This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
catfish/scripts/test.sh

13 lines
324 B
Bash
Raw Normal View History

2018-12-12 15:03:22 +00:00
#!/usr/bin/env bash
set -e
export PATH=env/bin:${PATH}
2018-12-12 18:46:31 +00:00
nose2 $@ -C --coverage catfish --verbose --coverage-report term --coverage-report html
2018-12-12 15:03:22 +00:00
black catfish tests setup.py --check
flake8 catfish tests setup.py --ignore=E128,E501
isort -rc -c catfish tests setup.py
2018-12-12 15:53:56 +00:00
mypy --strict-optional --ignore-missing-imports catfish