Additions to TESTING.rst

Small addition on how to run pep8 tests only for latest
patch set.

Change-Id: I07fa2c633d17acd1284ccd726a99a46414100ba3
This commit is contained in:
Gal Sagie 2015-04-13 09:41:17 +03:00
parent 7c46e082cd
commit 77df532e10
1 changed files with 5 additions and 0 deletions

View File

@ -194,6 +194,11 @@ To run only pep8::
tox -e pep8
Since pep8 includes running pylint on all files, it can take quite some time to run.
To restrict the pylint check to only the files altered by the latest patch changes::
tox -e pep8 HEAD~1
To run only the unit tests::
tox -e py27