Skip to content

Commit

Permalink
AppVeyor: Python 2.7 and 3.7 from #576
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jan 9, 2024
1 parent a546ca3 commit 1a0fff3
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
27 changes: 17 additions & 10 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,30 @@
# appveyor.yml - https://www.appveyor.com/docs/lang/python
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2019
# https://www.appveyor.com/docs/windows-images-software/#visual-studio-2022
---
image: Visual Studio 2019
environment:
global:
PATH: "C:\\Python27\\Scripts\\;%PATH%"
matrix:
- TOXENV: py27-base
- TOXENV: py27-optional
- TOXENV: py35-base
- TOXENV: py35-optional
- TOXENV: py36-base
- TOXENV: py36-optional
- PY_PYTHON: 2.7
TOXENV: py27-base
- PY_PYTHON: 2.7
TOXENV: py27-optional
- PY_PYTHON: 3.7
TOXENV: py37-base
- PY_PYTHON: 3.7
TOXENV: py37-optional

install:
- git submodule update --init --recursive
- python -m pip install tox
- py --list
- py -VV
- py -m pip install --upgrade pip
- py -m pip install tox

build: off

test_script:
- tox
- py -m tox

after_test:
- python debug-info.py
1 change: 1 addition & 0 deletions .github/workflows/python-tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# 2.7 and 3.7 run on Windows via AppVeyor
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
deps: [base, optional]
Expand Down

0 comments on commit 1a0fff3

Please sign in to comment.