21 lines
400 B
YAML
21 lines
400 B
YAML
sudo: false
|
|
language: python
|
|
cache: pip
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "nightly"
|
|
- "pypy3.3-5.2-alpha1"
|
|
env:
|
|
- TYPING_VERSION="<3.5.3"
|
|
- TYPING_VERSION=">=3.5.3"
|
|
matrix:
|
|
allow_failures:
|
|
- python: "nightly"
|
|
|
|
install:
|
|
- pip install pytest "typing$TYPING_VERSION" "pytest-cov>=2.5.1"
|
|
script: py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
|