diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2024-11-01 09:23:25 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2024-11-01 10:14:57 +0100 |
commit | 56e3d72a763bc71b0d57fe7f1f536209c526360a (patch) | |
tree | 8b3a02f57ccce1ee9884f1591dd449a3159dcc54 | |
parent | cc148a76b0abb91986db5b1183458d636face5e3 (diff) | |
download | searxng-56e3d72a763bc71b0d57fe7f1f536209c526360a.tar.gz searxng-56e3d72a763bc71b0d57fe7f1f536209c526360a.zip |
[fix] CI: remove target test.coverage from python's test matrix
The test.coverage cause a lot of failed CI jobs for reasons that cannot be
explained. As we do not monitor the coverage anyway, it is superfluous to run
this job, especially as it only has a disruptive effect on the CI.
BTW and the CI action upload-artifact@v3 is deprecated [1]
[1] https://github.com/actions/upload-artifact?tab=readme-ov-file#actionsupload-artifact
Related: https://github.com/searxng/searxng/issues/3983
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r-- | .github/workflows/integration.yml | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c085ad8e9..c1c529ef7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -45,14 +45,6 @@ jobs: make V=1 gecko.driver - name: Run tests run: make V=1 ci.test - - name: Test coverage - run: make V=1 test.coverage - - name: Store coverage result - uses: actions/upload-artifact@v3 - with: - name: coverage-${{ matrix.python-version }} - path: coverage/ - retention-days: 60 themes: name: Themes |