add isort to project

This commit is contained in:
Istvan Ruzman
2020-08-17 08:03:57 +02:00
parent 10766b842c
commit e2c25d076d
11 changed files with 42 additions and 41 deletions

View File

@@ -3,8 +3,8 @@ python:
- "3.7"
- "3.8"
# command to install dependencies
install: "pip install pytest pytest-black pytest-cov pytest-mypy pytest-pylint pytest-flake8 coveralls"
install: "pip install pytest pytest-black pytest-cov pylint-isort pytest-mypy pytest-pylint pytest-flake8 coveralls"
# command to run tests
script: pytest --black --pylint --pylint-jobs=4 --mypy --cov=pyrad3 --flake8
script: pytest --black --isort --pylint --pylint-jobs=4 --mypy --flake8 --cov=pyrad3
after_success:
- coveralls