Skip to content

Commit

Permalink
Update based on pr feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Kurait <[email protected]>
  • Loading branch information
AndreKurait committed Nov 22, 2024
1 parent 0c3acd7 commit ceea9f6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,17 @@ jobs:
working-directory: ${{ env.WORKING_DIR }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Run Tests
uses: actions/setup-python@v5
with:
python-version: ${{ env.python-version }}
- run: |
python3 -m pip install --upgrade pipenv
pipenv install --deploy --dev
pipenv run test || TEST_FAILED=true
pipenv run coverage xml
if [ "$TEST_FAILED" = true ]; then
echo "Tests failed, exiting step with error"
exit 1
fi
pipenv run test
- name: Generate Coverage Report
if: always()
run: pipenv run coverage xml
- name: Get Sanitized Name
if: always()
env:
Expand Down Expand Up @@ -221,7 +220,7 @@ jobs:
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

codecov-test:
report-codecov:
needs:
- gradle-tests
- console-python-tests
Expand Down

0 comments on commit ceea9f6

Please sign in to comment.