From 5c31efb99a21c119771c6d526eca1bd7ff60fa46 Mon Sep 17 00:00:00 2001 From: Grieve Date: Wed, 3 Jul 2024 11:12:35 +0800 Subject: [PATCH] Fix marker --- ibis-server/pyproject.toml | 1 + ibis-server/tests/routers/ibis/test_clickhouse.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"