Skip to content

Commit 35ae6cd

Browse files
committed
test: update ci tests
1 parent 79a6153 commit 35ae6cd

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff 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 .

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@ uv sync --all-extras --dev # install dev dependencies
316316
uv run ruff check . # run linting
317317

318318
docker compose up -d test_services # start ClickHouse
319+
uv run pytest tests
319320
uv run pytest tests/test_tool.py # ClickHouse only
320321
uv run pytest tests/test_chdb_tool.py # chDB only
321322
```

0 commit comments

Comments
 (0)