-
Notifications
You must be signed in to change notification settings - Fork 105
/
appveyor.yml
30 lines (25 loc) · 964 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
# From: http://tjelvarolsson.com/blog/how-to-continuously-test-your-python-code-on-windows-using-appveyor/
build: false
environment:
matrix:
- PYTHON: "C:\\Miniconda-x64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Miniconda"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "32"
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda install conda-build psutil
- conda update -q conda
- conda info -a
- "conda-env create -f infrastructure/install_gds3.yml"
#- "conda create --name gds --file content/infrastructure/gds_requirements_win-%PYTHON_ARCH%.txt"
- activate gdsbook3
test_script:
- jupyter nbconvert --to markdown --execute --ExecutePreprocessor.timeout=120 infrastructure/check_gds_stack.ipynb
#- cd content/labs
#- jupyter nbconvert --execute --ExecutePreprocessor.timeout=120 *.ipynb