forked from cortex-lab/phy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
24 lines (19 loc) · 763 Bytes
/
appveyor.yml
File metadata and controls
24 lines (19 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# CI on Windows via appveyor
# This file was based on Olivier Grisel's python-appveyor-demo
environment:
matrix:
- PYTHON: "C:\\Python34-conda64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
install:
# Install app from latest script
- "powershell iex ((new-object net.webclient).DownloadString('http://phy.cortexlab.net/install/latest.ps1'))"
- "SET PATH=%HOMEPATH%\\miniconda3;%HOMEPATH%\\miniconda3\\Scripts;%PATH%"
# We want to use the git version of phy, so let's uninstall the pip version
- "pip uninstall phy --yes"
- "pip install -r requirements-dev.txt"
- "python setup.py develop"
build: false # Not a C# project, build stuff at the test step instead.
test_script:
# Run the project tests
- py.test phy -m "not long"