diff --git a/ibis-server/pyproject.toml b/ibis-server/pyproject.toml index 50632a248..312022a02 100644 --- a/ibis-server/pyproject.toml +++ b/ibis-server/pyproject.toml @@ -34,6 +34,7 @@ addopts = [ ] markers = [ "bigquery: mark a test as a bigquery test", + "clickhouse: mark a test as a clickhouse test", "mssql: mark a test as a mssql test", "mysql: mark a test as a mysql test", "postgres: mark a test as a postgres test", diff --git a/ibis-server/tests/routers/ibis/test_clickhouse.py b/ibis-server/tests/routers/ibis/test_clickhouse.py index dae2781ad..300d0541a 100644 --- a/ibis-server/tests/routers/ibis/test_clickhouse.py +++ b/ibis-server/tests/routers/ibis/test_clickhouse.py @@ -47,7 +47,7 @@ def clickhouse(request) -> ClickHouseContainer: return ch -@pytest.mark.postgres +@pytest.mark.clickhouse class TestClickHouse: base_url = "/v2/ibis/clickhouse"