forked from kedro-org/kedro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (32 loc) · 1.01 KB
/
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
35
36
37
38
39
40
41
42
43
image: Visual Studio 2017
environment:
# For debugging: https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
# APPVEYOR_RDP_PASSWORD: <your_password>
matrix:
- PYTHON_VERSION: 3.5
MINICONDA3: C:\Miniconda3-x64
PYTHON_ARCH: "64"
- PYTHON_VERSION: 3.6
MINICONDA3: C:\Miniconda3-x64
PYTHON_ARCH: "64"
- PYTHON_VERSION: 3.7
MINICONDA3: C:\Miniconda3-x64
PYTHON_ARCH: "64"
version: '1.0.{build}'
init:
# Linux containers on windows only supported in premium:
# https://github.com/appveyor-tests/docker-ce/blob/master/appveyor.yml
# - docker-switch-linux
cache:
- '%LOCALAPPDATA%\pip\Cache -> requirements.txt, test_requirements.txt'
install:
- "set PATH=%MINICONDA%;%MINICONDA3%\\Scripts;%PATH%"
- conda create --name kedro python=%PYTHON_VERSION% -y
- activate kedro
- python -m pip install -U pip
- choco install make
- make install-pip-setuptools
- pip install -r test_requirements.txt -U
build: false
test_script:
- behave --verbose