File: .travis.yml

package info (click to toggle)
pympler 0.9%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,172 kB
  • sloc: python: 9,943; javascript: 2,775; makefile: 21
file content (29 lines) | stat: -rw-r--r-- 750 bytes parent folder | download
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
language: python
python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9-dev"
before_install:
  - sudo apt-get -qq update
  - sudo apt-get install -y graphviz python-tk python-matplotlib
install:
  - travis_retry pip install Sphinx
  - travis_retry pip install recommonmark
  - travis_retry pip install pep8
  - travis_retry pip install coverage
  - travis_retry pip install coveralls
  - travis_retry pip install numpy
script:
  - python -Wall setup.py try
  - python setup.py install
  - python -Wall setup.py test
  - COVERAGE=1 coverage run test/runtest.py
  - python run.py --doctest
  - python run.py --html
after_script:
  - pep8 --exclude=asizeof.py,metadata.py,bottle*.py --max-line-length=80 pympler
after_success:
  - coveralls