File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1515 strategy :
1616 matrix :
1717 os : [ubuntu-latest, macos-latest, windows-latest]
18- python-version : ['3.9', '3.10', '3.11 ']
18+ python-version : ['3.14 ']
1919
2020 steps :
2121 - uses : actions/checkout@v4
@@ -57,11 +57,15 @@ jobs:
5757
5858 - name : Run tests (Linux)
5959 if : runner.os == 'Linux'
60+ env :
61+ PYTHONPATH : ${{ github.workspace }}
6062 run : |
6163 xvfb-run -a pytest -v --cov=stego --cov=gui --cov=app --cov-report=xml tests/
6264
6365 - name : Run tests (macOS/Windows)
6466 if : runner.os != 'Linux'
67+ env :
68+ PYTHONPATH : ${{ github.workspace }}
6569 run : |
6670 pytest -v --cov=stego --cov=gui --cov=app --cov-report=xml tests/
6771
Original file line number Diff line number Diff line change 1414 fail-fast : false
1515 matrix :
1616 os : [ubuntu-latest, macos-latest, windows-latest]
17- python-version : ['3.11 ']
17+ python-version : ['3.14 ']
1818
1919 steps :
2020 - uses : actions/checkout@v4
@@ -48,10 +48,14 @@ jobs:
4848
4949 - name : Run tests (Linux with Xvfb)
5050 if : runner.os == 'Linux'
51+ env :
52+ PYTHONPATH : ${{ github.workspace }}
5153 run : xvfb-run -a pytest -v --cov=. --cov-report=xml --cov-report=term
5254
5355 - name : Run tests (macOS/Windows)
5456 if : runner.os != 'Linux'
57+ env :
58+ PYTHONPATH : ${{ github.workspace }}
5559 run : pytest -v --cov=. --cov-report=xml --cov-report=term
5660
5761 - name : Upload coverage
You can’t perform that action at this time.
0 commit comments