Skip to content

Commit

Permalink
appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
meejah committed Aug 4, 2024
1 parent 3ac4b55 commit c363666
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ environment:
TOXENV: py312

install:
- %PYTHON%\python.exe --version
- %PYTHON%\python.exe -m pip install tox
- |
%PYTHON%\python.exe --version
%PYTHON%\python.exe -m pip install tox
# note:
# %PYTHON% has: python.exe
Expand All @@ -36,15 +37,17 @@ install:
build: off

test_script:
- %PYTHON%\python.exe -m tox
- |
%PYTHON%\python.exe -m tox
after_test:
# This step builds your wheels.
# Again, you only need build.cmd if you're building C extensions for
# 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct
# interpreter
- %PYTHON%\python.exe -m pip install setuptools wheel
- %PYTHON%\python.exe setup.py bdist_wheel
- |
%PYTHON%\python.exe -m pip install setuptools wheel
%PYTHON%\python.exe setup.py bdist_wheel
artifacts:
# bdist_wheel puts your built wheel in the dist directory
Expand Down

0 comments on commit c363666

Please sign in to comment.