-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
40 lines (32 loc) · 798 Bytes
/
appveyor.yml
File metadata and controls
40 lines (32 loc) · 798 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
build: false
environment:
matrix:
- PYTHON_VERSION: 3.6.5
MINICONDA: C:\Miniconda36
- PYTHON_VERSION: 3.6.5
MINICONDA: C:\Miniconda36-x64
matrix:
fast_finish: true
init:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%"
install:
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda install pip numpy scipy
- conda update -q conda
- "python -m pip install --upgrade pip"
- "pip install -q pytest"
- "pip install -qr requirements.txt"
- "pip install ."
- "echo done"
# command to run tests, e.g. python setup.py test
test_script:
- pytest
skip_commits:
files:
- docs/**/*
- "**/*.rst"
- "*.md"
- ".gitignore"
- ".travis.yml"
- LICENSE.txt