summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-05-02 14:25:34 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-05-02 14:25:34 +0200
commit34ed300d0d9d1dbcc6cbd5ef2bf445da82dbdd69 (patch)
tree96c94f4aa05e0b4dd4ca7055fadc2fe72c0dc7e5
parentebbab491b18b34edf770616ccb69ac2510bf672d (diff)
downloadcython-34ed300d0d9d1dbcc6cbd5ef2bf445da82dbdd69.tar.gz
Finally add a test tag "py3only" for tests that should be excluded in Py2.
-rwxr-xr-xruntests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.py b/runtests.py
index 8d7a6efde..35d6522f3 100755
--- a/runtests.py
+++ b/runtests.py
@@ -382,6 +382,7 @@ EXT_EXTRAS = {
'tag:trace' : update_linetrace_extension,
'tag:bytesformat': exclude_extension_in_pyver((3, 3), (3, 4)), # no %-bytes formatting
'tag:no-macos': exclude_extension_on_platform('darwin'),
+ 'tag:py3only': exclude_extension_in_pyver((2, 7)),
}