| @@ -26,8 +26,10 @@ def pytest_runtest_setup(item): |
|
|
| 26 |
26 |
if 'network' in item.keywords and item.config.getoption("--skip-network"): |
| 27 |
27 |
pytest.skip("skipping due to --skip-network") |
| 28 |
28 |
|
| 29 |
|
-if 'high_memory' in item.keywords and not item.config.getoption("--run-highmemory"): |
| 30 |
|
-pytest.skip("skipping high memory test since --run-highmemory was not set") |
|
29 |
+if 'high_memory' in item.keywords and not item.config.getoption( |
|
30 |
+"--run-highmemory"): |
|
31 |
+pytest.skip( |
|
32 |
+"skipping high memory test since --run-highmemory was not set") |
| 31 |
33 |
|
| 32 |
34 |
|
| 33 |
35 |
# Configurations for all tests and all test modules |