forked from mess42/pyrate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
24 lines (21 loc) · 754 Bytes
/
appveyor.yml
File metadata and controls
24 lines (21 loc) · 754 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
build: off
environment:
matrix:
- platform: x86
PYTHON_ROOT: "C:\\Python36"
PYTHON_VERSION: "3.6"
MINICONDA: "C:\\Miniconda"
- platform: x64
PYTHON_ROOT: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
MINICONDA: "C:\\Miniconda-x64"
install:
- "set PATH=%PYTHON_ROOT%;%PYTHON_ROOT%\\Scripts;%PATH%"
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy matplotlib pytest"
- activate test-environment
- pip install -r requirements.in # install pyrate dependences
test_script:
- python -m nose2 tests.smoke_test # test automation, no coverage