##// END OF EJS Templates
Fixing typo in path
Olesya Baranova -
Show More
@@ -1,54 +1,54 b''
1 1 # http://travis-ci.org/#!/ipython/ipython
2 2 language: python
3 3 python:
4 4 - "nightly"
5 5 - 3.6
6 6 - 3.5
7 7 - 3.4
8 8 - 3.3
9 9 sudo: false
10 10 env:
11 11 global:
12 12 - PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
13 13 matrix:
14 14 - GROUP=docs
15 15 #group: edge
16 16 before_install:
17 17 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
18 - 'if [[ $GROUP == docs ]]; then pip install -r docs/doc-requirements.txt; fi'
18 - 'if [[ $GROUP == docs ]]; then pip install -r docs/requirements.txt; fi'
19 19 install:
20 20 - pip install setuptools pip --upgrade
21 21 - pip install -e file://$PWD#egg=ipython[test] --upgrade
22 22 - pip install codecov --upgrade
23 23 script:
24 24 - cd /tmp && iptest --coverage xml && cd -
25 25 - 'if [[ $GROUP == docs ]]; then make -C docs/ html; fi'
26 26 after_success:
27 27 - cp /tmp/ipy_coverage.xml ./
28 28 - cp /tmp/.coverage ./
29 29 - codecov
30 30
31 31 matrix:
32 32 allow_failures:
33 33 - python: nightly
34 34 exclude:
35 35 - python: 2.7
36 36 env: GROUP=docs
37 37
38 38 before_deploy:
39 39 - rm -rf dist/
40 40 - python setup.py sdist
41 41 - python setup.py bdist_wheel
42 42
43 43 deploy:
44 44 provider: releases
45 45 api_key:
46 46 secure: Y/Ae9tYs5aoBU8bDjN2YrwGG6tCbezj/h3Lcmtx8HQavSbBgXnhnZVRb2snOKD7auqnqjfT/7QMm4ZyKvaOEgyggGktKqEKYHC8KOZ7yp8I5/UMDtk6j9TnXpSqqBxPiud4MDV76SfRYEQiaDoG4tGGvSfPJ9KcNjKrNvSyyxns=
47 47 file: dist/*
48 48 file_glob: true
49 49 skip_cleanup: true
50 50 on:
51 51 repo: ipython/ipython
52 52 all_branches: true # Backports are released from e.g. 5.x branch
53 53 tags: true
54 54 python: 3.6 # Any version should work, but we only need one
General Comments 0
You need to be logged in to leave comments. Login now