mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
9a785de4b5
* Add coroutine provider examples * Add coroutine provier * Update changelog * Update static analysis travis jobs to python 3.7 * Update coroutine provider implementation for python 3.4 * Update static analysis travis jobs to python 3.6 * Make pycode style happy * Add tests for coroutine providers * Make coroutine tests python 2 syntax friendly * Split tests to python2 and python3 * Refactor coroutine provider tests * Modify pypy tests running command * Update coroutine provider docs
38 lines
756 B
YAML
38 lines
756 B
YAML
sudo: false
|
|
install:
|
|
- pip install tox
|
|
script:
|
|
- tox
|
|
language:
|
|
- python
|
|
matrix:
|
|
include:
|
|
- python: 3.6
|
|
env: TOXENV=coveralls DEPENDENCY_INJECTOR_DEBUG_MODE=1
|
|
install:
|
|
- pip install tox
|
|
- pip install cython
|
|
- make cythonize
|
|
- python: 3.6
|
|
env: TOXENV=pylint
|
|
- python: 3.6
|
|
env: TOXENV=flake8
|
|
- python: 3.6
|
|
env: TOXENV=pydocstyle
|
|
- python: 2.7
|
|
env: TOXENV=py27
|
|
- python: 3.4
|
|
env: TOXENV=py34
|
|
- python: 3.5
|
|
env: TOXENV=py35
|
|
- python: 3.6
|
|
env: TOXENV=py36
|
|
- python: 3.7
|
|
env: TOXENV=py37
|
|
sudo: required
|
|
dist: xenial
|
|
- python: pypy
|
|
env: TOXENV=pypy
|
|
notifications:
|
|
slack: ets-labs:g9OU0r5PXjA5ueeoQw01dVvV
|