forked from ipython/ipykernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
36 lines (31 loc) · 798 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
35
36
build: false
shallow_clone: false
skip_branch_with_pr: true
clone_depth: 1
environment:
matrix:
- python: "C:/Python27-x64"
- python: "C:/Python27"
- python: "C:/Python36-x64"
- python: "C:/Python36"
cache:
- C:\Users\appveyor\AppData\Local\pip\Cache
init:
- cmd: set PATH=%python%;%python%\scripts;%PATH%
install:
- cmd: |
pip install --upgrade pip wheel
pip --version
- cmd: |
pip install --pre -e .
pip install ipykernel[test]
- cmd: |
pip install matplotlib numpy
pip install "tornado<5"
pip freeze
- cmd: python -c "import ipykernel.kernelspec; ipykernel.kernelspec.install(user=True)"
test_script:
- cmd: pytest -v --cov ipykernel ipykernel
on_success:
- cmd: pip install codecov
- cmd: codecov