Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
.travis.yml 687 Bytes
Copy Edit Raw Blame History
Brad Cowie authored 2020-05-12 15:41 . Upgrade to ubuntu bionic.
dist: bionic
language: python
matrix:
include:
- python: 3.6
env: TOX_ENV=pycodestyle
- python: 3.6
env: TOX_ENV=py36
- python: 3.6
env: TOX_ENV=autopep8
- python: 3.5
env: TOX_ENV=py35
- python: 3.7
env: TOX_ENV=py37
- python: 3.8
env: TOX_ENV=py38
# This is disabled because of trouble running on travis CI.
# - python: pypy
# env: TOX_ENV=pypy
services:
- docker
sudo: required # Required to enable Docker service
install:
- pip install tox coveralls
- bash ryu/tests/integrated/common/install_docker_test_pkg_for_travis.sh
script:
- NOSE_VERBOSE=0 tox -e $TOX_ENV
after_success:
- coveralls
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化