We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee064b commit 43e228fCopy full SHA for 43e228f
2 files changed
anypytools/__init__.py
@@ -36,7 +36,7 @@
36
"NORMAL_PRIORITY_CLASS",
37
]
38
39
-__version__ = "1.15.3"
+__version__ = "1.15.4"
40
41
42
def print_versions():
anypytools/pytest_plugin.py
@@ -410,7 +410,7 @@ def runtest(self):
410
# Ignore error due to missing Main.RunTest
411
if "ERROR" in result:
412
runtest_missing = any(
413
- "Main.RunTest : Unresolved" in err for err in result["ERROR"]
+ "Main.RunTest :" in err for err in result["ERROR"]
414
)
415
if runtest_missing:
416
runtest_errros = (
0 commit comments