From dd2f2ce780e8d54447aa3db784c634ef4cdc7268 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 22 Oct 2021 08:18:02 +0200 Subject: [PATCH] Make pytest a mandatory test --- .github/workflows/lint_python.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 4683050..c49d352 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -27,7 +27,6 @@ jobs: - run: pip install --editable . - run: mkdir --parents --verbose .mypy_cache - run: mypy --ignore-missing-imports --install-types --non-interactive . || true - - run: pytest . || true - - run: pytest --doctest-modules . || true + - run: pytest - run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true - run: safety check || true