Unmark fast test as slow

This commit is contained in:
Bojan Serafimov
2022-04-14 13:14:54 -04:00
parent b92e1763ec
commit d2b00b7e35

View File

@@ -6,14 +6,14 @@ from fixtures.zenith_fixtures import ZenithEnv, PgBin, ZenithEnvBuilder, DEFAULT
from fixtures.benchmark_fixture import MetricReport, ZenithBenchmarker
@pytest.mark.slow
# TODO split this into separate tests maybe
@pytest.mark.parametrize(
"workload",
[
"hot-page",
"pgbench",
"pgbench-big",
"pgbench-long",
pytest.param("hot-page", marks=pytest.mark.slow),
pytest.param("pgbench"),
pytest.param("pgbench-big", marks=pytest.mark.slow),
pytest.param("pgbench-long", marks=pytest.mark.slow),
])
def test_get_page(zenith_env_builder: ZenithEnvBuilder,
zenbenchmark: ZenithBenchmarker,