-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathappveyor.yml
34 lines (30 loc) · 884 Bytes
/
appveyor.yml
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
build: false
environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda-x64
- PYTHON_VERSION: 3.8
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.8
MINICONDA: C:\Miniconda3-x64
- PYTHON_VERSION: 3.9
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.9
MINICONDA: C:\Miniconda3-x64
- PYTHON_VERSION: 3.10
MINICONDA: C:\Miniconda3
- PYTHON_VERSION: 3.10
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %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 pandas python-dateutil six pytest"
- activate test-environment
test_script:
- py.test