Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated cfg
  • Loading branch information
Panos committed Aug 22, 2020
commit f3c422ddcc357c072be973a9925ad9f0d5d063fa
20 changes: 10 additions & 10 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ install:
# - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

# Check that we have the expected version and architecture for Python
- FOR /r %python_dir in (%%PYTHON_VERS%%) DO (
set python="%python_dir\\python.exe"
set pip="%python_dir%\\Scripts\\pip"
- FOR /r %%python_dir in (%PYTHON_VERS%) DO (
set python="%%python_dir\\python.exe"
set pip="%%python_dir\\Scripts\\pip"
"%python% -V"
"%pip% install -U wheel setuptools twine cython"
)
Expand All @@ -87,9 +87,9 @@ build_script:
- ci\\appveyor\\build_ssh.bat
- ps: ls src/src/Release
- rm -f ssh/*.c
- FOR /r %python_dir in (%%PYTHON_VERS%%) DO (
set python="%python_dir\\python.exe"
set pip="%python_dir%\\Scripts\\pip"
- FOR /r %%python_dir in (%PYTHON_VERS%) DO (
set python="%%python_dir\\python.exe"
set pip="%%python_dir\\Scripts\\pip"
"%python% -V"
"%python% setup.py build_ext"
"%python% setup.py build"
Expand All @@ -99,15 +99,15 @@ build_script:

test_script:
- cd dist
- FOR /r %python_dir in (%%PYTHON_VERS%%) DO (
set python="%python_dir\\python.exe"
- FOR /r %%python_dir in (%PYTHON_VERS%) DO (
set python="%%python_dir\\python.exe"
"%python% ..\\ci\\appveyor\\import_test.py"
)
- cd ..

after_test:
- FOR /r %python_dir in (%%PYTHON_VERS%%) DO (
set python="%python_dir\\python.exe"
- FOR /r %%python_dir in (%PYTHON_VERS%) DO (
set python="%%python_dir\\python.exe"
"%python% setup.py bdist_wheel"
)
- mv dist/* .
Expand Down