Files
pyrad3/.travis.yml
2020-09-05 16:36:37 +02:00

15 lines
282 B
YAML

language: python
python:
- "3.7"
- "3.8"
- "3.9"
# command to install dependencies
install: "poetry install"
# command to run tests
script:
- bandit -c bandit.yaml -r src/python3
- pytest --black --isort --pylint --mypy --flake8 --cov=pyrad3
after_success:
- coveralls