We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb324bc + c010a80 commit e22f105Copy full SHA for e22f105
1 file changed
.github/workflows/release.yml
@@ -67,10 +67,10 @@ jobs:
67
run: |
68
if [ "$EMBEDDINGS_AVAILABLE" = "true" ]; then
69
echo "Embeddings available - using standard coverage"
70
- pytest --cov=src --cov-report=term-missing --cov-fail-under=100
+ pytest -n 2 --cov=src --cov-report=term-missing --cov-fail-under=100
71
else
72
echo "::warning::Embeddings unavailable - using reduced coverage config"
73
- pytest --cov=src --cov-report=term-missing --cov-fail-under=100 \
+ pytest -n 2 --cov=src --cov-report=term-missing --cov-fail-under=100 \
74
--cov-config=.coveragerc.no-embeddings
75
fi
76
0 commit comments