Skip to content

Commit a6a219f

Browse files
committed
Further attemps to fix tests stage
1 parent a36a5dd commit a6a219f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/publish-to-test-pypi.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
os: [ubuntu-latest] #, mac-latest]
3131
python-version: ["3.11", "3.12", "3.13"]
3232
runs-on: ${{ matrix.os }}
33-
continue-on-error: true
33+
env:
34+
GITHUB_ACTION: True
3435
steps:
3536
- uses: actions/checkout@v4
3637
- name: Set up Python ${{ matrix.python-version }}

tests/integration/test_snowsignal.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,6 @@ async def test_fragments_rebroadcast(self, mock_datagram_received: unittest.mock
222222
except IndexError:
223223
received_packet_payloads += bytes(packet[scapy.layers.inet.IP].payload)
224224

225-
print(f"env = {os.environ}")
226-
print(f"GITHUB_ACTION = {os.environ.get('GITHUB_ACTION')}")
227225
self.assertEqual(received_packet_payloads, toolong_msg)
228226

229227
# Quit main, though it probably quits anyway

0 commit comments

Comments
 (0)