2015-11-04 22:22:08 +00:00
|
|
|
sudo: false
|
2012-11-13 17:50:46 +00:00
|
|
|
language: python
|
2018-06-13 09:21:35 +00:00
|
|
|
cache: pip
|
2012-11-13 17:50:46 +00:00
|
|
|
python:
|
2013-03-19 01:22:21 +00:00
|
|
|
- "3.3"
|
2014-05-26 22:25:36 +00:00
|
|
|
- "3.4"
|
2015-11-04 21:34:28 +00:00
|
|
|
- "3.5"
|
2017-01-12 15:12:00 +00:00
|
|
|
- "3.6"
|
2015-11-04 21:34:28 +00:00
|
|
|
- "nightly"
|
2017-05-18 21:16:06 +00:00
|
|
|
- "pypy3.3-5.2-alpha1"
|
2017-01-23 11:01:33 +00:00
|
|
|
env:
|
|
|
|
- TYPING_VERSION="<3.5.3"
|
|
|
|
- TYPING_VERSION=">=3.5.3"
|
2016-10-19 15:39:12 +00:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- python: "nightly"
|
|
|
|
|
2013-06-28 21:49:23 +00:00
|
|
|
install:
|
2017-05-23 21:45:09 +00:00
|
|
|
- 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
|