forked from SmokinCaterpillar/pypet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
90 lines (71 loc) · 2.02 KB
/
appveyor.yml
File metadata and controls
90 lines (71 loc) · 2.02 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# fetch repository as zip archive
shallow_clone: true
# set clone depth
clone_depth: 16
environment:
matrix:
- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
MULTIPROC: "OFF"
SINGLECORE: "1"
EXAMPLES: "ON"
- PYTHON: "C:\\Python27_32"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
MULTIPROC: "1"
SINGLECORE: "OFF"
EXAMPLES: "OFF"
- PYTHON: "C:\\Python27_64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
MULTIPROC: "3"
SINGLECORE: "OFF"
EXAMPLES: "OFF"
- PYTHON: "C:\\Python35_32"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "32"
MULTIPROC: "2"
SINGLECORE: "OFF"
EXAMPLES: "OFF"
- PYTHON: "C:\\Python35_64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
MULTIPROC: "4"
SINGLECORE: "OFF"
EXAMPLES: "OFF"
- PYTHON: "C:\\Python35_64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
MULTIPROC: "OFF"
SINGLECORE: "2"
EXAMPLES: "ON"
- PYTHON: "C:\\Python35_32"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "32"
MULTIPROC: "OFF"
SINGLECORE: "3"
EXAMPLES: "OFF"
install:
# this installs the appropriate Miniconda (Py2/Py3, 32/64 bit),
# and all required packages
- appveyor-retry powershell .\\ciscripts\\appveyor\\install.ps1
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Install non-conda packages
- pip install psutil
- pip install dill
# Install scoop with explicetly due to pypi problems
- pip install https://pypi.python.org/packages/source/s/scoop/scoop-0.7.1.release.tar.gz
# Finally install pypet
- pip freeze # check installed packages
- python setup.py install
build: false
branches:
only:
- master
- develop
- brian2
test_script:
- cd ciscripts\\appveyor
# Full test suite
- runtests.cmd