File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 2727 pytest \
2828 -vv \
2929 --log-cli-level=INFO \
30- -k "eurac_pc_farm_detection" \ # Run only the specific test
30+ --random-subset=1 \
3131 --html report/report.html --self-contained-html \
3232 --track-metrics-json=report/metrics.json \
3333 --track-metrics-parquet-s3-bucket="apex-benchmarks" \
Original file line number Diff line number Diff line change @@ -70,14 +70,12 @@ def test_run_benchmark(
7070 reference_dir = download_reference_data (
7171 scenario = scenario , reference_dir = tmp_path / "reference"
7272 )
73+ assert 1 == 2
74+
7375 assert_job_results_allclose (
7476 actual = actual_dir ,
7577 expected = reference_dir ,
7678 tmp_path = tmp_path ,
7779 rtol = scenario .reference_options .get ("rtol" , 1e-6 ),
7880 atol = scenario .reference_options .get ("atol" , 1e-6 ),
7981 )
80-
81- def test_fail ():
82- """A dummy test that always fails"""
83- assert False
You can’t perform that action at this time.
0 commit comments