Files
pyrad3/.travis.yml
2020-08-17 08:03:57 +02:00

11 lines
334 B
YAML

language: python
python:
- "3.7"
- "3.8"
# command to install dependencies
install: "pip install pytest pytest-black pytest-cov pylint-isort pytest-mypy pytest-pylint pytest-flake8 coveralls"
# command to run tests
script: pytest --black --isort --pylint --pylint-jobs=4 --mypy --flake8 --cov=pyrad3
after_success:
- coveralls