File: .travis.yml

package info (click to toggle)
python-marshmallow-polyfield 5.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 651; sh: 7; makefile: 4
file content (19 lines) | stat: -rw-r--r-- 317 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
dist: xenial
language: python
sudo: false
matrix:
  include:
  - python: '3.5'
  - python: '3.6'
  - python: '3.7'
  - python: '3.8'
  - python: pypy3
    dist: trusty
before_install:
- pip install -U pip
install:
- pip install -U -r requirements.txt
before_script:
- flake8 .
script: pytest
after_success: coveralls