Skip to content

Commit 19fb35c

Browse files
committed
just use 3.14
1 parent 381064d commit 19fb35c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
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

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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

0 commit comments

Comments
 (0)