15 lines
298 B
YAML
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
|
|
|