From 89c91bf031ceab518b8f7de3232b78532b9b2ccc Mon Sep 17 00:00:00 2001 From: Valeriy Ponomaryov Date: Fri, 12 Jan 2018 16:48:29 +0200 Subject: Add possibility to run 'pep8' checks Steps to be performed to run 'pep8' checks in local venv: 1) Install 'tox' package first: $ pip install tox 2a) Run all the tests (currently, it is only pep8 checks): $ tox 2b) Run only 'pep8' checks: $ tox -e pep8 Change-Id: I7afc55bbab5bcbeb2920c3439259da2707ff9a04 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 test-requirements.txt (limited to 'test-requirements.txt') diff --git a/test-requirements.txt b/test-requirements.txt new file mode 100644 index 00000000..39304807 --- /dev/null +++ b/test-requirements.txt @@ -0,0 +1 @@ +flake8 -- cgit