-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# A list of test name prefixes to skip (usually because they are marked as "standalone-compatible", but make assumptions | ||
# that are only valid for C++ standalone). | ||
# Test names have to use pytest's syntax, i.e. "test_name.py::test_function". Note that these are *prefixes*, so all | ||
# tests with names starting with the given prefix will be skipped. | ||
test_network.py::test_profile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
Utility functions for testing. | ||
""" | ||
from pathlib import Path | ||
def get_skip_args(): | ||
fname = Path(__file__).parent / 'skip_tests.txt' | ||
if not fname.exists(): | ||
return [] | ||
with open(fname) as f: | ||
lines = f.readlines() | ||
return ["--deselect="+line.strip() for line in lines if line.strip() and not line.startswith('#')] |