1 Star 0 Fork 334

qinjl / DjangoBlog

forked from 且听风吟 / DjangoBlog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis.yml 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
且听风吟 提交于 2019-08-07 17:20 . 修改travis
dist: xenial
language: python
sudo: required
python:
- "3.5"
- "3.6"
- "3.7"
services:
- mysql
env:
global:
- DJANGO_SETTINGS_MODULE="travis_test.travis_settings"
branches:
only:
- master
# command to install dependencies
before_install:
- sudo apt-get update
- sudo apt-get install python-dev python3-dev libmysqlclient-dev -y
- sudo cp $TRAVIS_BUILD_DIR/travis_test/mysql.cnf /etc/mysql/conf.d/
- sudo service mysql restart
install:
- pip install -r requirements.txt
- pip install python-coveralls
- pip install coverage codecov
before_script:
- mysql -e 'CREATE DATABASE `djangoblog` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */;'
- python manage.py makemigrations
- python manage.py migrate
- python manage.py collectstatic --noinput
- python manage.py compress --force
# command to run tests
script:
- coverage run manage.py test
after_success:
- coveralls
- codecov
Python
1
https://gitee.com/andyhmy/DjangoBlog.git
git@gitee.com:andyhmy/DjangoBlog.git
andyhmy
DjangoBlog
DjangoBlog
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891