Skip to content

Commit

Permalink
run-tests-workflow.yml: Add test for install in non ascii path
Browse files Browse the repository at this point in the history
  • Loading branch information
ales-erjavec committed Oct 3, 2024
1 parent 6ba2c57 commit 1b341a6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/run-tests-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,19 @@ jobs:
XVFBARGS: "-screen 0 1280x1024x24"
run: catchsegv xvfb-run -a -s "$XVFBARGS" pytest -v --cov=orangecanvas --cov-report=xml

- name: Test non-ascii install path
if: ${{ startsWith(runner.os, 'Linux') }}
env:
TEST_ENV: ${{ matrix.test-env }}
XVFBARGS: "-screen 0 1280x1024x24"
run: |
NAME="ščž ćžđ"
python -m venv "$NAME"
. "$NAME"/bin/activate
pip install $TEST_ENV ./
cd ..
catchsegv xvfb-run -a -s "$XVFBARGS" python -m orangecanvas --help
- name: Upload Coverage
uses: codecov/codecov-action@v4
with:
Expand Down

0 comments on commit 1b341a6

Please sign in to comment.