diff --git a/action.yml b/action.yml index 493f00b..fbe1c9a 100644 --- a/action.yml +++ b/action.yml @@ -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"