forked from ipython/ipykernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
35 lines (30 loc) · 847 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
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 . coverage nose_warnings_filters
pip install ipykernel[test] nose-timer
- cmd: |
pip install matplotlib numpy
pip freeze
- cmd: python -c "import ipykernel.kernelspec; ipykernel.kernelspec.install(user=True)"
test_script:
- cmd: nosetests --with-coverage --with-timer --cover-package=ipykernel ipykernel
on_success:
- cmd: pip install codecov
- cmd: codecov