-
Notifications
You must be signed in to change notification settings - Fork 29
/
appveyor.yml
35 lines (29 loc) · 857 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
build: false
cache:
#- packages
platform:
-x64
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda36-x64
PYTHON_ARCH: 64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA% %PYTHON_ARCH%"
install:
# ------------------- PYTHON ENVIRONNEMENT -------------------
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- "conda config --set always_yes yes --set changeps1 no"
- "conda update -q conda"
- "conda info -a"
- "conda create -q -n testenv python=%PYTHON_VERSION% numpy scipy matplotlib"
# activate testing environnement
- "activate testenv"
- "python -m pip install --upgrade pip"
# install additional dependencies
- "pip install setuptools mne pandas statsmodels pytest"
- "dir"
# ------------------- TENSORPAC -------------------
- "python setup.py develop"
test_script:
- "pytest"