261 Star 1.7K Fork 373

wushuiyong / walle-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis.yml 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
cclauss 提交于 2019-06-03 11:01 . Travis CI: Add more flake8 tests
language: python
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: "2.7"
- python: "3.7"
dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)
install:
- echo "#install#"
# For some reason Travis' build envs have wildly different pip/setuptools
# versions between minor Python versions, and this can cause many hilarious
# corner packaging cases. So...
- pip install --upgrade pip
# Setuptools 34+ seems to get less stable
# - pip install 'setuptools>33,<34'
# Pre-requirements sanity test (again, resembles pure, non-dev install
# environment.) Avoids e.g. spec's 'six' from gumming up our attempts to
# import our vendorized 'six'.
- pip install -r requirements/dev.txt
- pip list --format=columns
before_script:
- echo "#before_script#"
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- mkdir -p /tmp/walle/{logs,library,webroot,releases}
script:
- echo "#script#"
- export FLASK_APP=waller.py
- python -m flask test
notifications:
on_success: never
on_failure: always
Python
1
https://gitee.com/wushuiyong/walle-web.git
git@gitee.com:wushuiyong/walle-web.git
wushuiyong
walle-web
walle-web
master

搜索帮助