From db7f336eaa82debe393152ec77573eb6548ace1f Mon Sep 17 00:00:00 2001 From: Quentin Ferrand Date: Tue, 19 Apr 2022 11:11:06 +0200 Subject: [PATCH] - --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9b88357..db79558 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,8 +7,8 @@ steps: - name: test image: python:latest 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 - 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/