Skip to content

Commit

Permalink
fix: don't copy test report from container if local run
Browse files Browse the repository at this point in the history
  • Loading branch information
rsporny committed Oct 31, 2024
1 parent 3f17228 commit 4f00dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/tests/run-e2e-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ runs:
eval "$pytest_cmd"
fi
- name: Copy .report.json if run with docker exec
if: ${{ inputs.local-environment }} == 'true'
if: ${{ inputs.local-environment == 'true' }}
run: |
echo "Copy test results from docker container"
mkdir -p e2e-tests
Expand Down

0 comments on commit 4f00dae

Please sign in to comment.