summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-03-12 10:58:31 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2023-03-12 11:07:52 -0400
commitc752c33c28db259d74f908e698d7492401cc8102 (patch)
tree3f12b6ee8ef9fe0a6d83f36e03b7b9493ebf471d /tests
parentdb42832862185e17a27fac224d5889de9c579a0e (diff)
downloadastroid-git-c752c33c28db259d74f908e698d7492401cc8102.tar.gz
Add xfail
Diffstat (limited to 'tests')
-rw-r--r--tests/brain/test_regex.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/brain/test_regex.py b/tests/brain/test_regex.py
index 1fbd59b9..0d44074d 100644
--- a/tests/brain/test_regex.py
+++ b/tests/brain/test_regex.py
@@ -24,6 +24,9 @@ class TestRegexBrain:
assert name in re_ast
assert next(re_ast[name].infer()).value == getattr(regex, name)
+ @pytest.mark.xfail(
+ reason="Started failing on main, but no one reproduced locally yet"
+ )
@test_utils.require_version(minver="3.9")
def test_regex_pattern_and_match_subscriptable(self):
"""Test regex.Pattern and regex.Match are subscriptable in PY39+."""