forked from kynan/nbstripout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
34 lines (29 loc) · 931 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
# What Python version is installed where:
# https://www.appveyor.com/docs/build-environment/#python
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
init:
- set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
- set TMPDIR=C:\Temp
- set CRAMSHELL=bash
- set NBSTRIPOUT_EXE=%PYTHON%\Scripts\nbstripout.exe
- git config --global core.autocrlf true
install:
- mkdir -p C:\Temp
- "%PYTHON%/Scripts/easy_install -U pip"
- "%PYTHON%/Scripts/pip install pytest"
- "%PYTHON%/Scripts/pip install nbformat"
- python setup.py install
build: false # Not a C# project, build stuff at the test step instead.
test_script:
- python setup.py test