forked from LABSN/expyfun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (30 loc) · 961 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
# CI on Windows via appveyor
# This file was based on Olivier Grisel's python-appveyor-demo
# USE PYTHON2.7 OTHERWISE PYGLET INSTALL IS TOO SLOW
environment:
global:
PYTHON: "C:\\conda"
MINICONDA_VERSION: "latest"
CONDA_DEPENDENCIES: "numpy scipy matplotlib coverage nose setuptools h5py pandas"
PIP_DEPENDENCIES: "pyglet mne tdtpy"
matrix:
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
- PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "32"
- PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
platform:
-x64
install:
- "git clone git://github.com/astropy/ci-helpers.git"
- "powershell ci-helpers/appveyor/install-miniconda.ps1"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "activate test"
- "SET _EXPYFUN_SILENT=true"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
# Run the project tests
- "nosetests.exe"