diff --git a/conftest.py b/conftest.py index 0aaa4591dd9..099d163ec6a 100644 --- a/conftest.py +++ b/conftest.py @@ -43,7 +43,7 @@ def get_passed_tests(): logfile = f.readlines() # Detect all tests that passed before. - test_re = re.compile(r'(spyder.*) (SKIPPED|PASSED|XFAIL) ') + test_re = re.compile(r'(spyder.*)(SKIPPED|PASSED|XFAIL)') tests = set() for line in logfile: match = test_re.match(line)