From 6170f70ebaccff8aa0f48aca86a2b07c333cb54d Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 27 Aug 2025 23:19:04 +0200 Subject: [PATCH] Update action.yml --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index f7992f5..2239427 100644 --- a/action.yml +++ b/action.yml @@ -269,9 +269,9 @@ runs: --json-report-file=markdown/pytest-report.json" 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) CMD="pytest -s $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;; + pixi) CMD="pixi run pytest $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;; + conda) CMD="conda run -n myenv pytest $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;; + pip) CMD="pytest $TEST_PATH $PYTEST_ARGS > outputs/pytest-output.log 2>&1 || true" ;; esac exec 1>>"$PRINTS"