Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: Stavros Ntentos <[email protected]>
  • Loading branch information
stdedos committed Dec 4, 2023
1 parent 69ad82f commit 2f27ee8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,26 @@ jobs:
python -m pip install --upgrade pip
python -m pip install tox
- name: GH-Debug
if: ${{ matrix.os != 'windows-latest' }}
run: |
echo $PATH | tr ':' '\n'
echo
# Find and print all occurrences of Python interpreters in the PATH.
for dir in $(echo $PATH | tr ':' '\n'); do
for file in "$dir"/python*; do
if [[ -x "$file" && -f "$file" ]]; then
echo "$file"
fi
done
done
- name: Test with tox
env:
FORCE_COLOR: 1
PYTEST_CI_ARGS: --cov-report=xml --junitxml=test_artifacts/test_report.xml --color=yes
run: tox --skip-missing-interpreters=true
run: tox

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 2f27ee8

Please sign in to comment.