fix: test and coverage gracefully skip when tests/ or src/ not exists
CI / lint (push) Successful in -3m58s
CI / lint (pull_request) Successful in -3m58s
CI / test (push) Failing after -3m59s
CI / test (pull_request) Failing after -3m59s
CI / notify-on-failure (push) Successful in -4m3s
CI / notify-on-failure (pull_request) Successful in -4m3s
CI / lint (push) Successful in -3m58s
CI / lint (pull_request) Successful in -3m58s
CI / test (push) Failing after -3m59s
CI / test (pull_request) Failing after -3m59s
CI / notify-on-failure (push) Successful in -4m3s
CI / notify-on-failure (pull_request) Successful in -4m3s
This commit is contained in:
@@ -52,7 +52,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Run tests (exclude E2E)
|
- name: Run tests (exclude E2E)
|
||||||
run: |
|
run: |
|
||||||
.venv/bin/pytest tests/ -m "not e2e" -x -q
|
if [ -d tests ]; then
|
||||||
|
.venv/bin/pytest tests/ -m "not e2e" -x -q
|
||||||
|
else
|
||||||
|
echo "No tests/ directory, skipping tests"
|
||||||
|
fi
|
||||||
|
|
||||||
# ── Job 3: CI 失败通知 ───────────────────────────────
|
# ── Job 3: CI 失败通知 ───────────────────────────────
|
||||||
# v1.23 不支持 failure(),用 always() + shell 检查 commit status 替代
|
# v1.23 不支持 failure(),用 always() + shell 检查 commit status 替代
|
||||||
|
|||||||
@@ -34,11 +34,19 @@ jobs:
|
|||||||
|
|
||||||
- name: Unit & Integration Tests
|
- name: Unit & Integration Tests
|
||||||
run: |
|
run: |
|
||||||
.venv/bin/pytest tests/ -m "not e2e" -x -q
|
if [ -d tests ]; then
|
||||||
|
.venv/bin/pytest tests/ -m "not e2e" -x -q
|
||||||
|
else
|
||||||
|
echo "No tests/ directory, skipping tests"
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Coverage Report
|
- name: Coverage Report
|
||||||
run: |
|
run: |
|
||||||
.venv/bin/pytest tests/ -m "not e2e" --cov=src --cov-report=term-missing -q
|
if [ -d tests ] && [ -d src ]; then
|
||||||
|
.venv/bin/pytest tests/ -m "not e2e" --cov=src --cov-report=term-missing -q
|
||||||
|
else
|
||||||
|
echo "No tests/ or src/ directory, skipping coverage"
|
||||||
|
fi
|
||||||
|
|
||||||
# ── Job 2: 部署 ─────────────────────────────────────
|
# ── Job 2: 部署 ─────────────────────────────────────
|
||||||
deploy:
|
deploy:
|
||||||
|
|||||||
Reference in New Issue
Block a user