Skip to content

Commit 5f9df28

Browse files
committed
Switch Appveyor to Python 3.13, pytest
1 parent 1c0be3d commit 5f9df28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ environment:
44
matrix:
55
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015, PYTHON: "C:\\Python27"}
66
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python37-x64"}
7-
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python38"}
87
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python38-x64"}
98
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019, PYTHON: "C:\\Python39-x64"}
9+
- {APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022, PYTHON: "C:\\Python313-x64"}
1010

1111
install:
1212
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
13-
- "python.exe -m pip install codecov coverage nose"
13+
- "python.exe -m pip install codecov coverage pytest-cov setuptools"
1414
- "python.exe -m pip install -r requirements.txt"
1515

1616
build: off
1717

1818
test_script:
19-
- "nosetests --with-coverage --cover-branches"
19+
- "py.test --cov=ihm --cov-branch -v ."
2020

2121
on_success:
2222
- "codecov"

0 commit comments

Comments
 (0)