加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.travis.yml 617 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sakis Kasampalis 提交于 2018-10-28 18:31 . Update .travis.yml
# vim ft=yaml
# travis-ci.org definition for python-patterns build
language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# Disabled for now since cause more pain than gain
# - "pypy"
# - "pypy3"
cache:
- pip
install:
- travis_retry pip install -q coveralls codecov six
- pip install flake8 # eventually worth
script:
# Run tests
- PYTHONPATH=. nosetests -s -v --with-doctest --with-cov --cover-package . --logging-level=INFO -v .
# Actually run all the scripts, contributing to coverage
- PYTHONPATH=. ./run_all.sh
- flake8 *py
after_success:
- coveralls
- codecov
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化