From b6053f617babb4fa2a45bb44b2825307389f24fc Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Mon, 18 Mar 2024 14:46:18 +0100 Subject: [PATCH] Fix: Tests were run twice The command `hatch run testing:cov` includes running `hatch run testing:test-cov`. This removes the duplication --- .github/workflows/test-on-droplets-matrix.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/test-on-droplets-matrix.yml b/.github/workflows/test-on-droplets-matrix.yml index e8e4edfb8..61853bf7e 100644 --- a/.github/workflows/test-on-droplets-matrix.yml +++ b/.github/workflows/test-on-droplets-matrix.yml @@ -41,7 +41,6 @@ jobs: - name: Run unit tests run: | sudo python3 -m pip install hatch hatch-vcs coverage - sudo hatch run testing:test-cov sudo hatch run testing:cov - name: Upload coverage reports to Codecov