Update action.yml

This commit is contained in:
2025-08-27 13:08:08 +02:00
parent 44ed27f5c0
commit 2d394a01f5
+2 -2
View File
@@ -201,7 +201,7 @@ runs:
exit 1
}
;;
pip|custom)
pip)
pip install pytest pytest-cov pytest-json-report coverage >> "$LOG_FILE" 2>&1 || {
exit 1
}
@@ -272,7 +272,7 @@ runs:
case "${{ inputs.env }}" in
pixi) CMD="pixi run pytest -s $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;;
conda) CMD="conda run -n myenv pytest -s $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;;
pip|custom) CMD="pytest -s $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;;
pip) CMD="pytest -s $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;;
esac
exec 1>>"$PRINTS"