From c3636667b2c92928b309e9b70b5475a5119912e7 Mon Sep 17 00:00:00 2001 From: meejah Date: Sat, 3 Aug 2024 23:32:00 -0600 Subject: [PATCH] appveyor --- .appveyor.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 6667cbf..027ec91 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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 @@ -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