加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 659 Bytes
一键复制 编辑 原始数据 按行查看 历史
joncrall 提交于 2017-12-09 00:09 . fix travis script
language: python
sudo: false
cache:
apt: true
directories:
- $HOME/.cache/pip
- $HOME/download
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install pip -U
- pip install pytest -U
- pip install pytest-cov -U
- pip install codecov -U
#- pip install xdoctest -U
install:
#- travis_retry python setup.py build develop
- travis_retry pip install -e .
script:
- travis_wait pytest --cov-config .coveragerc --cov-report html --cov=bayes_opt
#-p no:doctest --xdoctest
after_success:
#- coveralls || echo "Coveralls upload failed"
- codecov
cache:
apt: true
directories:
- $HOME/.pip-cache
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化