From 3e34db50fba8b036db1508d5c7fa487be7eb2155 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Tue, 5 Jan 2016 18:14:57 -0200 Subject: [PATCH] Rename "flakes" testenv to "linting" as requested in review --- .travis.yml | 2 +- CONTRIBUTING.rst | 4 ++-- appveyor.yml | 2 +- tox.ini | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index c3e301ca5..0fd2676ed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ env: matrix: - TESTENV=coveralls - TESTENV=doctesting - - TESTENV=flakes + - TESTENV=linting - TESTENV=py26 - TESTENV=py27 - TESTENV=py27-cxfreeze diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 4f5007a0a..2bee8b17e 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -179,10 +179,10 @@ but here is a simple overview: You need to have Python 2.7 and 3.5 available in your system. Now running tests is as simple as issuing this command:: - $ python runtox.py -e py27,py35,flakes + $ python runtox.py -e linting,py27,py35 This command will run tests via the "tox" tool against Python 2.7 and 3.5 - and also perform "flakes" coding-style checks. ``runtox.py`` is + and also perform "lint" coding-style checks. ``runtox.py`` is a thin wrapper around ``tox`` which installs from a development package index where newer (not yet released to pypi) versions of dependencies (especially ``py``) might be present. diff --git a/appveyor.yml b/appveyor.yml index 73948b5b6..61bd389b0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,7 +8,7 @@ build: false # Not a C# project, build stuff at the test step instead. test_script: - 'set TESTENVS= - flakes, + linting, py26, py27, py33, diff --git a/tox.ini b/tox.ini index 97b615833..747682905 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ minversion=2.0 distshare={homedir}/.tox/distshare envlist= - flakes,py26,py27,py33,py34,py35,pypy, + linting,py26,py27,py33,py34,py35,pypy, {py27,py35}-{pexpect,xdist,trial}, py27-nobyte,doctesting,py27-cxfreeze @@ -31,7 +31,7 @@ commands= [testenv:genscript] commands= py.test --genscript=pytest1 -[testenv:flakes] +[testenv:linting] basepython = python2.7 deps = flake8 restructuredtext_lint