File: .travis.yml

package info (click to toggle)
python-infinity 1.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 104 kB
  • sloc: python: 311; makefile: 20
file content (16 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
sudo: required
dist: xenial
language: python
python: '3.5'
python:
  - 3.4
  - 3.5
  - 3.6
  - 3.7
  - pypy3
install:
  - pip install -e ".[test]"
script:
  - isort --recursive --diff infinity.py test_infinity.py && isort --recursive --check-only infinity.py test_infinity.py
  - flake8 infinity.py test_infinity.py
  - py.test --doctest-glob='*.rst'