Files
pyrad3/.travis.yml
2020-09-03 13:34:10 +02:00

15 lines
298 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 --pylint-jobs=4 --mypy --flake8 --cov=pyrad3
after_success:
- coveralls