summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d9b92ea57104b66eac65e00ff7f559e7a88c0843 (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
27
28
29
dist: xenial
sudo: false

language: python
python:
  - 3.6
  - 3.7
  - 3.8
  - pypy3

addons:
  apt:
    packages:
      - xmlsec1

services:
  - mongodb

install:
  - pip install tox
  - pip install tox-travis
  - pip install codecov

script:
  - codecov --version
  - tox

after_success:
  - codecov