forked from nipy/PySurfer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (20 loc) · 699 Bytes
/
Copy pathappveyor.yml
File metadata and controls
23 lines (20 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
environment:
matrix:
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- "pip install numpy scipy matplotlib nose pillow pytest pytest-cov pytest-faulthandler coverage imageio imageio-ffmpeg codecov pyqt5==5.9"
- "pip install traits traitsui pyface vtk mayavi nibabel"
- "powershell make/get_fsaverage.ps1"
- "python setup.py develop"
- "SET SUBJECTS_DIR=%CD%\\subjects"
- "ls %CD%\\subjects"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
# Run the project tests
- "pytest surfer --cov=surfer -v"
on_success:
- "codecov"