-
Notifications
You must be signed in to change notification settings - Fork 42
/
appveyor.yml
31 lines (26 loc) · 1.06 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
# From: http://tjelvarolsson.com/blog/how-to-continuously-test-your-python-code-on-windows-using-appveyor/
build: false
environment:
matrix:
- PYTHON: "C:\\Miniconda3-x64"
PYTHON_VERSION: "3.7"
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON_VERSION% %PYTHON% %PYTHON_ARCH%"
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 content/infrastructure/install_gds_stack.yml"
- cmd: call %PYTHON%\Scripts\activate.bat
- conda activate gds
test_script:
- python -c "import os; print(os.listdir('.'))"
- python -c "import os; print(os.listdir('./content/'))"
- python -c "import os; print(os.listdir('./content/infrastructure'))"
- python -c "import os; print(os.getcwd())"
- "jupyter nbconvert --to markdown --execute --ExecutePreprocessor.timeout=120 content\\infrastructure\\check_gds_stack.ipynb"
#- cd content/labs
#- jupyter nbconvert --execute --ExecutePreprocessor.timeout=120 *.ipynb