File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -30,24 +30,18 @@ jobs:
3030 - name : Install Project
3131 run : uv sync --all-extras --dev
3232
33- - name : Run chDB tests
34- env :
35- CHDB_ENABLED : " true"
36- CLICKHOUSE_ENABLED : " false"
37- CHDB_DATA_PATH : " :memory:"
38- run : |
39- uv run pytest tests/test_chdb_tool.py
40-
41- - name : Run ClickHouse tests
33+ - name : Run tests
4234 env :
4335 CLICKHOUSE_HOST : " localhost"
4436 CLICKHOUSE_PORT : " 8123"
4537 CLICKHOUSE_USER : " default"
4638 CLICKHOUSE_PASSWORD : " "
4739 CLICKHOUSE_SECURE : " false"
4840 CLICKHOUSE_VERIFY : " false"
41+ CHDB_ENABLED : " true"
42+ CHDB_DATA_PATH : " :memory:"
4943 run : |
50- uv run pytest tests/test_tool.py
44+ uv run pytest tests
5145
5246 - name : Lint with Ruff
5347 run : uv run ruff check .
Original file line number Diff line number Diff line change @@ -316,6 +316,7 @@ uv sync --all-extras --dev # install dev dependencies
316316uv run ruff check . # run linting
317317
318318docker compose up -d test_services # start ClickHouse
319+ uv run pytest tests
319320uv run pytest tests/test_tool.py # ClickHouse only
320321uv run pytest tests/test_chdb_tool.py # chDB only
321322```
You can’t perform that action at this time.
0 commit comments