We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a84740 commit 60860daCopy full SHA for 60860da
.github/workflows/ci.yaml
@@ -30,24 +30,18 @@ jobs:
30
- name: Install Project
31
run: uv sync --all-extras --dev
32
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
+ - name: Run tests
42
env:
43
CLICKHOUSE_HOST: "localhost"
44
CLICKHOUSE_PORT: "8123"
45
CLICKHOUSE_USER: "default"
46
CLICKHOUSE_PASSWORD: ""
47
CLICKHOUSE_SECURE: "false"
48
CLICKHOUSE_VERIFY: "false"
+ CHDB_ENABLED: "true"
+ CHDB_DATA_PATH: ":memory:"
49
run: |
50
- uv run pytest tests/test_tool.py
+ uv run pytest tests
51
52
- name: Lint with Ruff
53
run: uv run ruff check .
0 commit comments