|
@@ -1,15 +1,8 @@
|
|
|
language: python
|
|
|
-sudo: enabled
|
|
|
cache:
|
|
|
directories:
|
|
|
- $HOME/.cache/pip
|
|
|
matrix:
|
|
|
- allow_failures:
|
|
|
- - python: "3.7" # until we can get Python 3 compatibility in place
|
|
|
- # NOTE: comment out fast_finish if we have to reinstate any allow_failures,
|
|
|
- # because of https://github.com/travis-ci/travis-ci/issues/1696 (multiple
|
|
|
- # notifications)
|
|
|
- fast_finish: true
|
|
|
include:
|
|
|
- python: "2.7"
|
|
|
- python: "3.7"
|
|
@@ -21,7 +14,7 @@ install:
|
|
|
# corner packaging cases. So...
|
|
|
- pip install --upgrade pip
|
|
|
# Setuptools 34+ seems to get less stable
|
|
|
- - pip install 'setuptools>33,<34'
|
|
|
+ # - 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'.
|
|
@@ -30,9 +23,9 @@ install:
|
|
|
before_script:
|
|
|
- echo "#before_script#"
|
|
|
# stop the build if there are Python syntax errors or undefined names
|
|
|
- # - flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
|
|
|
+ - flake8 . --count --select=E901,E999,F821,F822,F823 --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
|
|
|
+ - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
|
|
|
- mkdir -p /tmp/walle/{logs,library,webroot,releases}
|
|
|
script:
|
|
|
- echo "#script#"
|