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.
2 parents 319b2fb + 8097037 commit 965f0c7Copy full SHA for 965f0c7
tests/addons.py
@@ -1,3 +1,4 @@
1
+import sys
2
import pytest
3
4
@@ -51,3 +52,6 @@ def is_numpy_new_enough(version_feature_introduced):
51
52
53
using_pylibefp = pytest.mark.skipif(_plugin_import('pylibefp') is False,
54
reason='Not detecting module pylibefp. Install package if necessary and add to envvar PYTHONPATH')
55
+
56
+using_py3 = pytest.mark.skipif(sys.version_info < (3, 0),
57
+ reason='Python does not use Py3 features, hurrah!')
0 commit comments