Skip to content
This repository was archived by the owner on Jun 2, 2026. It is now read-only.

Commit 1a958b6

Browse files
committed
status command
1 parent e43347c commit 1a958b6

6 files changed

Lines changed: 260 additions & 201 deletions

File tree

Makefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,20 @@ lint-check:
66
uv run ruff format --diff
77
uv run ruff check
88

9+
.venv39: export VIRTUAL_ENV=.venv39
10+
.venv39:
11+
uv sync --dev --extra cli --python 3.9 --active
12+
13+
test39: .venv39
14+
test39: export VIRTUAL_ENV=.venv39
915
test39:
10-
VIRTUAL_ENV=.venv39 uv run --active --python 3.9 --extra cli pytest --cov
16+
uv run --active pytest --cov
1117

18+
test39-e2e: .venv39
19+
test39-e2e: export VIRTUAL_ENV=.venv39
20+
test39-e2e: export DD_INTEGRATION_TESTS=1
21+
test39-e2e:
22+
uv run --active pytest tests/integration/test_e2e.py
1223

1324
test:
1425
if [ -n "$(GITHUB_RUN_ID)" ]; then \

0 commit comments

Comments
 (0)