Skip to content

Commit 589bee2

Browse files
committed
TST: AMQP pipeline test: also skip on 3.12
1 parent 0441d92 commit 589bee2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
- Install build dependencies for `pymssql` on Python 3.8 as there are no wheels available for this Python version (PR#2542 by Sebastian Wagner).
6363
- Install `psql` explicitly for workflow support on other platforms such as act (PR#2542 by Sebastian Wagner).
6464
- Create intelmq user & group if running privileged to allow dropping privileges (PR#2542 by Sebastian Wagner).
65-
- `intelmq.tests.lib.test_pipeline.TestAmqp.test_acknowledge`: Also skip on Python 3.11 besides on 3.8 when running on CI (PR#2542 by Sebastian Wagner).
65+
- `intelmq.tests.lib.test_pipeline.TestAmqp.test_acknowledge`: Also skip on Python 3.11 and 3.12 besides on 3.8 when running on CI (PR#2542 by Sebastian Wagner).
6666
- Full pytest workflow: Version-independent install of postgres client, for Ubuntu 24.04 (default on GitHub now) test environment compatibility (PR#2557 by Sebastian Wagner).
6767
- Debian package build workflow: Use artifact upload v4 instead of v3 (PR#2565 by Sebastian Wagner).
6868

intelmq/tests/lib/test_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ def test_reject(self):
266266
self.pipe.reject_message()
267267
self.assertEqual(SAMPLES['normal'][1], self.pipe.receive())
268268

269-
@unittest.skipIf(os.getenv('CI') == 'true' and sys.version_info[:2] in ((3, 8), (3, 11)),
269+
@unittest.skipIf(os.getenv('CI') == 'true' and sys.version_info[:2] in ((3, 8), (3, 11), (3, 12)),
270270
'Fails on CI with Python 3.8 and 3.11')
271271
def test_acknowledge(self):
272272
self.pipe.send(SAMPLES['normal'][0])

0 commit comments

Comments
 (0)