-
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Quentin Ferrand 2022-04-19 11:11:06 +02:00
parent 93c4e00122
commit db7f336eaa

View file

@ -7,8 +7,8 @@ steps:
- name: test - name: test
image: python:latest image: python:latest
commands: commands:
- pip install --upgrade pip black flake8 mypy pylint pytest - pip install -q --upgrade pip black flake8 mypy pylint pytest
- flake8 --ignore=E501,W503,E265 - flake8 --ignore=E501,W503,E265
- mypy --ignore-missing-imports ./tenkan/ - mypy --ignore-missing-imports ./tenkan/
- pylint --disable=E1101,E0401,C0301 --ignore=__init__.py ./tenkan/ - pylint --disable=E1101,E0401,C0301 --ignore=tenkan/__init__.py ./tenkan/
- pytest ./tests/ - pytest ./tests/