blob: 3e09159483bf6fd2f08e972f88a2586593cd2f1e (
plain)
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
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy"
- "pypy3"
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
# See https://github.com/travis-ci/travis-ci/issues/9815
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- pip install -Uq pytest pytest-cov codecov
- pytest --version
script:
- pytest --cov=sqlparse
after_success:
- codecov
|