-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (27 loc) · 866 Bytes
/
appveyor.yml
File metadata and controls
32 lines (27 loc) · 866 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
build: false
environment:
matrix:
# - PYTHON: "C:\\Python27"
# PYTHON_VERSION: "2.7.8"
# PYTHON_ARCH: "32"
# MINICONDA: C:\Miniconda
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.1"
PYTHON_ARCH: "32"
MINICONDA: C:\Miniconda35
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH% %MINICONDA%"
install:
- "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 test-environment python=%PYTHON_VERSION% numpy scipy matplotlib pytest pytest-cov pandas"
- activate test-environment
- pip install coverage
- pip install -r requirements.txt
- pip install -e .
test_script:
- mkdir for_test
- cd for_test
- py.test --pyargs diff_register --cov-report term-missing --cov=diff_register