Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/asynchronous/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,6 +642,8 @@ def maybe_skip_test(self, spec):
self.skipTest("CSOT not implemented for with_transaction")
if "transaction" in class_name or "transaction" in description:
self.skipTest("CSOT not implemented for transactions")
if "COVERAGE" in os.environ:
self.skipTest("CSOT tests are inconsistent with coverage")
Comment on lines +645 to +646

# Some tests need to be skipped based on the operations they try to run.
for op in spec["operations"]:
Expand Down
2 changes: 2 additions & 0 deletions test/unified_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,6 +641,8 @@ def maybe_skip_test(self, spec):
self.skipTest("CSOT not implemented for with_transaction")
if "transaction" in class_name or "transaction" in description:
self.skipTest("CSOT not implemented for transactions")
if "COVERAGE" in os.environ:
self.skipTest("CSOT tests are inconsistent with coverage")
Comment on lines +644 to +645

# Some tests need to be skipped based on the operations they try to run.
for op in spec["operations"]:
Expand Down
Loading