We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48be78b commit c8ede3cCopy full SHA for c8ede3c
1 file changed
.github/workflows/test.yaml
@@ -56,19 +56,19 @@ jobs:
56
--log-level=DEBUG \
57
--verbose
58
59
- - name: Run slow tests (manual trigger)
+ - name: Run slow tests
60
if: github.event_name == 'workflow_dispatch'
61
shell: bash
62
run: >
63
uv run pytest \
64
- -m "slow and not full_pipeline" \
+ -m "slow" \
65
--runner=docker \
66
--junitxml=pytest-slow.xml \
67
--cov=src tests \
68
--cov-append \
69
70
71
- - name: Run full pipeline tests (manual trigger)
+ - name: Run full pipeline tests
72
if: github.event_name == 'workflow_dispatch' && inputs.e2e == true
73
74
0 commit comments