forked from globus/globus-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
25 lines (22 loc) · 827 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
environment:
matrix:
# Appveyor may upgrade python to new point releases
# See: http://www.appveyor.com/docs/installed-software#python
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
# invoke python explicitly, and wrap it in build.cmd so that compilation of
# C-extensions uses the correct python
# for reference: https://packaging.python.org/appveyor/
- "build.cmd %PYTHON%\\python.exe -m pip install ."
- "build.cmd %PYTHON%\\python.exe -m pip install -r test-requirements.txt"
test_script:
# explicitly invoke under the build environment's python
- "%PYTHON%\\python.exe -m flake8"
- "%PYTHON%\\python.exe -m nose2"
build: off
deploy: off