forked from EtienneCmb/visbrain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
28 lines (24 loc) · 1.06 KB
/
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
build: false
environment:
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda36-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-desktop.ps1'))
# - ps: $screen_resolution = '1280x800'; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-desktop.ps1'))
# ------------------- 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 pip"
# Activate testing environnement :
- activate testenv
# Install dependencies :
- pip install mne nibabel setuptools PyOpenGL PyOpenGL_accelerate pytest pytest-cov pytest-sugar pandas
# ------------------- VISBRAIN -------------------
- pip install -e .
test_script:
- py.test --cov --verbose