We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a18ad commit 3cc2abdCopy full SHA for 3cc2abd
tests/conftest.py
@@ -1,6 +1,10 @@
1
"""Global fixtures and settings for the pytest test suite"""
2
import sys
3
import os
4
+from helpers import constants
5
6
# Add test helper modules to search path with out making "tests" a Python package
7
sys.path.append(os.path.join(os.path.dirname(__file__), "helpers"))
8
+
9
+if sys.version_info.major > 3 or (sys.version_info.major == 3 and sys.version_info.minor >= 12):
10
+ constants.STANDARD_MSG_ATTRIBUTES.add('taskName')
0 commit comments