Skip to content

Commit 43e228f

Browse files
committed
fix: Even more fixes for AMS 8.2 compability
1 parent bee064b commit 43e228f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

anypytools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"NORMAL_PRIORITY_CLASS",
3737
]
3838

39-
__version__ = "1.15.3"
39+
__version__ = "1.15.4"
4040

4141

4242
def print_versions():

anypytools/pytest_plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ def runtest(self):
410410
# Ignore error due to missing Main.RunTest
411411
if "ERROR" in result:
412412
runtest_missing = any(
413-
"Main.RunTest : Unresolved" in err for err in result["ERROR"]
413+
"Main.RunTest :" in err for err in result["ERROR"]
414414
)
415415
if runtest_missing:
416416
runtest_errros = (

0 commit comments

Comments
 (0)