X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=.travis.yml;h=0124368fd942505d366d065149777676527755bf;hp=d755d8f8595f193622b1ca7bc4bac469fdc18af1;hb=f3243f22298045de3bd31bf47cdf0abe8394843a;hpb=b1bebbcb67325593f8af247582208940a4cc0332 diff --git a/.travis.yml b/.travis.yml index d755d8f859..0124368fd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,10 +32,10 @@ env: matrix: include: - #- os: linux-ppc64le - # sudo: false - # compiler: clang - # env: CONFIG_OPTS="--strict-warnings -D__NO_STRING_INLINES" + - os: linux-ppc64le + sudo: false + compiler: clang + env: CONFIG_OPTS="--strict-warnings -D__NO_STRING_INLINES" - os: linux addons: apt: @@ -120,6 +120,18 @@ matrix: - gcc-mingw-w64 compiler: x86_64-w64-mingw32-gcc env: EXTENDED_TEST="yes" CONFIG_OPTS="no-pic" + - os: linux + language: python + python: 3.7 + dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069) + sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069) + install: pip install flake8 + 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 + # 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 + script: true exclude: - os: linux compiler: clang