加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.travis.yml 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
language: python
python: 2.7
services:
- mysql
before_script:
- pip install -r requirements.txt
- pip install flake8
- pip install codecov
- pip install coverage
script:
- flake8
- source scripts/develop/sites/community/env.sh
- mysql -uroot -e "CREATE DATABASE IF NOT EXISTS $APP_ID DEFAULT CHARACTER SET = 'utf8' DEFAULT COLLATE 'utf8_general_ci';"
- mysql -uroot -e "SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));"
- echo 'yes' | bash scripts/code/coverage_and_report.sh -e enterprise
after_success:
- codecov
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化