1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# What Python version is installed where:
# http://www.appveyor.com/docs/installed-software#python
image:
- Visual Studio 2022
environment:
matrix:
- TOXENV: py39
- TOXENV: py310
- TOXENV: py311
- TOXENV: py312
- TOXENV: py313
install:
- powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# - py -m pip install -U tox setuptools wheel
# - py -m pip install -Ue ".[tests]"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
- dir
- C:\Users\appveyor\.local\bin\uvx.exe tox
|