summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2026-03-07 22:58:31 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2026-03-07 23:20:07 +0000
commite58075416dedd53636e89b1cd240f86f2e7c2ee0 (patch)
treede5443c3b59283ddcd784344681cea2f6d548744
parent9b6eebd8d555210fa1ed056c7a6e22cb411ccda9 (diff)
downloaddeluge-develop.tar.gz
deluge-develop.tar.bz2
deluge-develop.zip
ci: disable internet icon tests in github actionsHEADdevelop
The tracker icons tests are failing when attempting to fetch from google.com. For now we will not run these tests on github CI. The long-term solution would be for tests to hit a local test http server serving test data.
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 06aeeb130..5091ca699 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -68,7 +68,7 @@ jobs:
- name: Test with pytest
run: |
python -c 'from deluge._libtorrent import lt; print(lt.__version__)';
- $DEBUG_PREFIX pytest -v -m "not (todo or gtkui)" deluge
+ $DEBUG_PREFIX pytest -v -m "not (todo or gtkui or internet)" deluge
- uses: actions/upload-artifact@v4
# capture all crashes as build artifacts
@@ -124,4 +124,4 @@ jobs:
- name: Test with pytest
run: |
python -c 'import libtorrent as lt; print(lt.__version__)';
- pytest -v -m "not (todo or gtkui or security)" deluge
+ pytest -v -m "not (todo or gtkui or security or internet)" deluge