forked from MICA-MNI/BrainSpace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
43 lines (27 loc) · 898 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
37
38
39
40
41
42
43
image:
- Visual Studio 2017
- Visual Studio 2019
platform: x64
environment:
matrix:
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.0"
build: false
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Check that we have the expected version and architecture for Python
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- "python -m pip install --upgrade pip"
# - python --version
- python -m pip install -e .[test]
- "git clone --depth 1 git://github.com/vtkiorg/ci-helpers.git"
- "powershell ci-helpers/appveyor/install_opengl.ps1"
test_script:
- python -m pytest -r a -v