forked from dwavesystems/dwave-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (27 loc) · 895 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
26
27
28
29
30
31
32
33
34
35
36
environment:
DWAVE_API_ENDPOINT: https://cloud.dwavesys.com/sapi
DWAVE_API_TOKEN:
secure: YekPDE0jzk9VymUkPeswJ8SBhhsvHcb0yP9b+bvx/YPs/wZUWDsl1GrNfCLe4Iys
matrix:
# https://www.appveyor.com/docs/build-environment/#python
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python37-x64"
matrix:
fast_finish: true
cache:
- '%PYTHON%\Lib\site-packages -> requirements.txt'
- '%AppData%\pip-cache'
build_script:
- "%PYTHON%\\python.exe -m pip install -r requirements.txt --cache-dir %AppData%\\pip-cache"
before_test:
- "%PYTHON%\\python.exe -m pip install ."
test_script:
- "%PYTHON%\\python.exe -m unittest discover"