From 9e790bc57c2a549b373504a674d8591380c82c47 Mon Sep 17 00:00:00 2001 From: ajram23 Date: Tue, 2 Jun 2026 16:30:57 -0400 Subject: [PATCH] ci: run network tests in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI ran only `tests/test_commands/`, so `tests/test_network.py` (the network/curl integration suite, including the curl compression regression tests) was never executed by the Test or Release workflows — a transport regression could merge or ship green. Add `tests/test_network.py` to both pytest invocations so the network suite is gated. --- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a039212..bb3c29f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: - name: Run tests run: | - pytest tests/test_commands/ -v --tb=short + pytest tests/test_commands/ tests/test_network.py -v --tb=short - name: Determine version id: version diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8515ad..fabbc6a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,4 +28,4 @@ jobs: - name: Run tests run: | - pytest tests/test_commands/ -v --tb=short + pytest tests/test_commands/ tests/test_network.py -v --tb=short