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