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 5b9047d commit e028890Copy full SHA for e028890
.github/workflows/python-ci.yml
@@ -23,6 +23,21 @@ jobs:
23
python -m pip install --upgrade pip
24
pip install -e .[dev]
25
26
+ - name: Start CockroachDB (latest)
27
+ run: |
28
+ docker run -d \
29
+ --name crdb \
30
+ -p 26257:26257 \
31
+ -p 8080:8080 \
32
+ cockroachdb/cockroach:latest \
33
+ start-single-node --insecure
34
+
35
+ - name: Set CRDB_URL environment variable
36
+ run: echo "CRDB_URL=cockroachdb://root@localhost:26257/defaultdb?sslmode=disable" >> $GITHUB_ENV
37
38
+ - name: Wait for DB to be ready
39
+ run: sleep 5
40
41
- name: Lint with ruff (non-blocking)
42
run: ruff check . || true
43
@@ -32,4 +47,5 @@ jobs:
47
- name: Run tests
48
run: pytest tests/
49
env:
50
+ CRDB_URL: postgresql://root@localhost:26257/defaultdb?sslmode=disable
51
MCP_DEMO_MODE: "true"
0 commit comments