-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
22 lines (18 loc) · 418 Bytes
/
.travis.yml
File metadata and controls
22 lines (18 loc) · 418 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
cache:
pip: true
directories:
- "$HOME/.cache/pypoetry"
install:
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -o get-poetry.py
- python get-poetry.py --yes
- source $HOME/.poetry/env
- poetry install
script: pytest -q tests/
matrix:
include:
- python: "3.6"
- python: "3.7"
dist: xenial
- python: "3.8"
dist: bionic