blob: f84063b3e562e1f70b37708a374feef801f4a983 [file] [log] [blame]
language: python
stages:
- linting
- test
cache:
pip: true
directories:
- $HOME/.cache/pypoetry
- $HOME/.cache/pre-commit
install:
- pip install poetry --pre
- poetry install -v
script: pytest -q tests/
jobs:
include:
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- stage: linting
python: "3.6"
install:
- pip install pre-commit
- pre-commit install-hooks
script:
- pre-commit run --all-files