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