We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6120d5 commit 92d3419Copy full SHA for 92d3419
action.yml
@@ -91,9 +91,8 @@ runs:
91
run: |
92
echo "Executando testes com MGC_PATH: $MGC_PATH"
93
94
- # Executa os testes e captura a saída
95
set +e # Não falha imediatamente em caso de erro
96
- output=$(poetry run pytest ${{ inputs.pytest-args }} --tb=short --ignore=tests/test_auth.py 2>&1)
+ output=$(poetry run pytest ${{ inputs.pytest-args }} --tb=short --ignore=tests/test_auth.py 2>&1 | tee /dev/tty)
97
exit_code=$?
98
set -e
99
@@ -118,4 +117,4 @@ runs:
118
117
echo "EOF" >> $GITHUB_OUTPUT
119
120
# Mantém o exit code original
121
- exit $exit_code
+ exit $exit_code
0 commit comments