From 342192c41426bd17a70b58687da30638472fcf38 Mon Sep 17 00:00:00 2001 From: Thomas Sundvoll Date: Tue, 18 Jun 2024 14:58:33 +0200 Subject: [PATCH] Move pytest before linting --- .github/workflows/pythonpackage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index a82e98af..27267a1c 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -29,11 +29,11 @@ jobs: python -m pip install --upgrade pip pip install -r requirements.txt -e .[dev] + - name: Test with pytest + run: | + pytest + - name: Lint run: | black --check . mypy . - - - name: Test with pytest - run: | - pytest