Skip to content

Commit 40f6dc5

Browse files
committed
Skip codestyle test for 3.12
Signed-off-by: Tushar Goel <[email protected]>
1 parent e22ae0c commit 40f6dc5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_codestyle.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@
99

1010
import subprocess
1111
import unittest
12+
import sys
13+
import pytest
1214

1315

1416
class BaseTests(unittest.TestCase):
17+
18+
@pytest.mark.skipif(sys.version_info[:2] == (3, 12), reason="Skipping test for Python 3.12")
1519
def test_codestyle(self):
1620
"""
1721
This test shouldn't run in proliferated repositories.

0 commit comments

Comments
 (0)