You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pytest-flakes/files/pytest-flakes-4.0.3-fix-py3...

18 lines
573 B

From: Arthur Zamarin <arthurzam@gentoo.org>
Date: Fri, 27 Aug 2021 08:23:16 +0300
Subject: [PATCH] test_syntax_error: fix for python 3.10
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
--- a/test_flakes.py
+++ b/test_flakes.py
@@ -20,7 +20,8 @@ for x in []
pass
""")
result = testdir.runpytest("--flakes", "--ignore", testdir.tmpdir)
- assert "1: invalid syntax" in result.stdout.str()
+ assert ("1: invalid syntax" in result.stdout.str() or
+ "1: expected ':'" in result.stdout.str())
assert 'passed' not in result.stdout.str()