Skip to content

Commit

Permalink
Adding report.json as a github actions artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalinn committed Dec 6, 2024
1 parent 208f45e commit a84ff0b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,17 @@ jobs:
else
behavex ./tests/features/*.feature
fi
# Set report.json to be available as an artifact for debugging
- name: Set report.json to be available as an artifact
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
dir
type .\\tests\\features\\output\\report.json
else
cat ./tests/features/output/report.json
fi
uses: actions/upload-artifact@v4
with:
name: report.json
path: output/report.json

0 comments on commit a84ff0b

Please sign in to comment.