Remove py26 from PTI

Also add py34, for those projects that are python3 compatible.

Change-Id: Icaa54bec41bc06e9b6801314b10d529c3c57f33f
This commit is contained in:
James E. Blair
2015-02-27 09:59:38 -08:00
parent eb2062d91b
commit ab09462fc6

View File

@@ -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
--------------------