加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 672 Bytes
一键复制 编辑 原始数据 按行查看 历史
Quentin Dawans 提交于 2018-02-15 10:59 . Add the missing loop fixture (#60)
sudo: required
services:
- docker
language: python
python:
# - 3.5.2
# - 3.5
- 3.6
- 3.6-dev
- 3.7-dev
- nightly
matrix:
allow_failures:
- python: '3.6-dev'
- python: '3.7-dev'
- python: 'nightly'
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
install:
- pip install --upgrade pip wheel
- pip install --upgrade setuptools
- pip install flake8
- pip install pytest pytest-cov pytest-asyncio codecov uvloop -e .
script:
- flake8 aiosip examples tests
- py.test --cov=aiosip --cov-report=term --cov-report=html --cov-append --loop pyloop,uvloop tests
after_success:
- codecov
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化