Run tests.
(report=False)
| 16 | return ignore_options + xdist_options |
| 17 | |
| 18 | def test(report=False): |
| 19 | """Run tests.""" |
| 20 | cmd = base_cmd() |
| 21 | cmd.extend(["--benchmark-disable"]) |
| 22 | if report: |
| 23 | cmd.append("--junitxml=dedalus-test-junit.xml") |
| 24 | return pytest.main(cmd + [testpath]) |
| 25 | |
| 26 | def bench(): |
| 27 | """Run benchmarks.""" |