File: .travis.yml

package info (click to toggle)
python-mergedict 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: python: 176; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (2)
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
language: python

python:
    - "3.5"
    - "3.6"
    - "3.7"
    - "3.8"
    - "3.9-dev"
    - "pypy3"

branches:
  only:
    - master
    - test

install:
  - pip install .
  - pip install -r dev_requirements.txt
  - pip install python-coveralls

script:
  - doit --continue
  - if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then doit coverage; fi

after_success:
  - if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]; then coveralls; fi


notifications:
    email:
        on_success: change
        on_failure: change