File: .travis.yml

package info (click to toggle)
python-calmjs.types 1.0.1-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 124 kB
  • sloc: python: 61; makefile: 19
file content (29 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (3)
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
sudo: false
dist: xenial
matrix:
  include:
    - language: python
      python: 2.7
    - language: python
      python: 3.6
    - language: python
      python: 3.7
    - language: python
      python: 3.8

install:
  - pip install coverage flake8
  - python setup.py develop
script:
  - flake8
  - coverage run --include=src/* -m unittest calmjs.types.tests.make_suite
  - coverage report -m
after_success:
  - pip install coveralls
  - coveralls
branches:
  only:
    - testing
    - master
    - 1.0.x
    - 1.0.1