From ab09462fc6285b29e0f508472e43e5800d6c4444 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 27 Feb 2015 09:59:38 -0800 Subject: [PATCH] Remove py26 from PTI Also add py34, for those projects that are python3 compatible. Change-Id: Icaa54bec41bc06e9b6801314b10d529c3c57f33f --- reference/project-testing-interface.rst | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/reference/project-testing-interface.rst b/reference/project-testing-interface.rst index 6b9b800b5..cc9ba6649 100644 --- a/reference/project-testing-interface.rst +++ b/reference/project-testing-interface.rst @@ -16,7 +16,6 @@ End results needed Each python project must be able to do: - - Unit tests for python2.6 - Unit tests for python2.7 - Codestyle checks - Testing Coverage Report @@ -24,12 +23,15 @@ Each python project must be able to do: - Translations import/export and merge for translated projects - Documentation generation +Projects which are compatible with Python 3 must also be able to do: + + - Unit tests for python3.4 + Specific commands ----------------- To drive the above tasks, the following commands should be supported in a clean tree: - - tox -epy26 - tox -epy27 - tox -epep8 - tox -ecover @@ -41,6 +43,10 @@ Projects that are translated should also support: - tox -evenv python setup.py extract_messages - tox -evenv python setup.py update_catalog +Projects which are compatible with Python 3 must also be able to do: + + - tox -epy34 + Requirements Listing --------------------