File: .travis.yml

package info (click to toggle)
simplebayes 1.5.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 212 kB
  • sloc: python: 494; makefile: 164; sh: 42
file content (14 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
cache:
  - apt
  - pip
sudo: false
python:
  - "2.7"
  - "3.4"
install:
  - pip install -r setup/requirements.dev.txt
script:
  - nosetests tests/test.py --with-coverage --cover-package=simplebayes --cover-min-percentage 100
  - flake8 simplebayes tests
  - pylint simplebayes tests