File tree Expand file tree Collapse file tree 4 files changed +24
-31
lines changed
Expand file tree Collapse file tree 4 files changed +24
-31
lines changed Original file line number Diff line number Diff line change 1+ # Run tests on Mac OS.
2+ name : test_macos
3+ on : [push, pull_request]
4+ permissions : read-all
5+ jobs :
6+ test_macos :
7+ runs-on : ${{ matrix.os }}
8+ strategy :
9+ matrix :
10+ include :
11+ - os : macos-26
12+ python-version : ' 3.14'
13+ toxenv : ' py314'
14+ steps :
15+ - uses : actions/checkout@v5
16+ - name : Install dependencies
17+ run : |
18+ brew update -q
19+ brew install -q gettext gnu-sed python@${{ matrix.python-version }} tox || true
20+ brew link --force gettext
21+ - name : Run tests
22+ run : |
23+ tox -e ${{ matrix.toxenv }}
Original file line number Diff line number Diff line change @@ -28,16 +28,10 @@ environment:
2828 PYTHON_VERSION : " 3.14"
2929 L2TBINARIES_TRACK : " dev"
3030 TARGET : wheel
31- - DESCRIPTION : " Run tests on Mac OS with Python 3.14"
32- APPVEYOR_BUILD_WORKER_IMAGE : macos-sonoma
33- HOMEBREW_NO_INSTALL_CLEANUP : 1
34- TARGET : tests
35- PYTHON_VERSION : " 3.14"
3631
3732install :
3833- cmd : " %PYTHON%\\ python.exe -m pip install -U build pip setuptools twine wheel"
39- - ps : If ($isWindows) { .\config\appveyor\install.ps1 }
40- - sh : config/appveyor/install.sh
34+ - ps : .\config\appveyor\install.ps1
4135
4236build_script :
4337- cmd : IF [%TARGET%]==[wheel] (
@@ -49,7 +43,6 @@ test_script:
4943 IF EXIST "tests\\end-to-end.py" (
5044 set PYTHONPATH=. &&
5145 " %PYTHON%\\ python.exe" " tests\\ end-to-end.py" --debug -c "config\\end-to-end.ini" ) )
52- - sh : config/appveyor/runtests.sh
5346
5447artifacts :
5548- path : dist\*.whl
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments