-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Adam Li <adam2392@gmail.com>
- Loading branch information
Showing
4 changed files
with
283 additions
and
23 deletions.
There are no files selected for viewing
264 changes: 258 additions & 6 deletions
264
benchmarks_nonasv/notebooks/forest_ht_independent_data.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,22 +1,10 @@ | ||
# import pytest | ||
import pytest | ||
|
||
|
||
# def pytest_addoption(parser): | ||
# parser.addoption( | ||
# "--runslow", action="store_true", default=False, help="run slow tests" | ||
# ) | ||
# With the following global module marker, | ||
# monitoring is disabled by default: | ||
pytestmark = [pytest.mark.monitor_skip_test] | ||
|
||
|
||
def pytest_configure(config): | ||
"""Set up pytest markers.""" | ||
config.addinivalue_line("markers", "slowtest: mark test as slow") | ||
|
||
|
||
# def pytest_collection_modifyitems(config, items): | ||
# if config.getoption("--runslow"): | ||
# # --runslow given in cli: do not skip slow tests | ||
# return | ||
# skip_slow = pytest.mark.skip(reason="need --runslow option to run") | ||
# for item in items: | ||
# if "slow" in item.keywords: | ||
# item.add_marker(skip_slow) |
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