Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Changes from all commits
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
31 changes: 15 additions & 16 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
version: "{build}"
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: 'C:\Python27'
- PYTHON: 'C:\Python27-x64'
- PYTHON: 'C:\Python34'
- PYTHON: 'C:\Python34-x64'
- PYTHON: 'C:\Python35'
- PYTHON: 'C:\Python35-x64'
matrix:
fast_finish: true
init:
- "ECHO %PATH%"
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
- ps: ls C:/Python*
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you even need this one, anyway?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't need it, but it's nice to know what appveyor supports out of the box (was certainly useful when we were considering adding python3.5)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

They've got documentation for that, though.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed. However the docs were out of date when python3.5 was added.

- 'SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%'
- 'python -c "import os, pprint; pprint.pprint(sorted(os.environ.items()))"'
# Use python -m pip when upgrading pip to avoid WindowsError: Access is denied
- python -m pip install pip --upgrade
install:
- "git submodule update --init"
- "%PYTHON%\\Scripts\\pip.exe --version"
- "%PYTHON%\\Scripts\\pip.exe install -rrequirements-dev.txt wheel"
- git submodule update --init
- pip install wheel -rrequirements-dev.txt
build: false
test_script:
- '%PYTHON%\\python.exe -c "import os, pprint; pprint.pprint(sorted(os.environ.items()))"'
- "%PYTHON%\\python.exe -m pytest sasstests.py"
- python -m pytest sasstests.py
after_test:
- "%PYTHON%\\python.exe setup.py bdist_wheel"
- python setup.py bdist_wheel
artifacts:
- path: dist\*
cache:
Expand Down