pypy is not checked at gate
We also don't use python 3.4. Change-Id: I9aa2f3770610570166fc7004df1e05da9c5e0d4a
This commit is contained in:
parent
7c723f6a1e
commit
fb0d34ba26
@ -7,6 +7,3 @@ python-devel [platform:rpm]
|
||||
libffi-dev [platform:dpkg]
|
||||
libffi-devel [platform:rpm]
|
||||
openssl-devel [platform:rpm]
|
||||
pypy [pypy]
|
||||
pypy-dev [platform:dpkg pypy]
|
||||
pypy-devel [platform:rpm pypy]
|
||||
|
@ -42,7 +42,7 @@ the following::
|
||||
To create an environment for a different version, such as Python 3, run
|
||||
the following::
|
||||
|
||||
$ virtualenv -p python3.4 $HOME/envs/sdk3
|
||||
$ virtualenv -p python3.5 $HOME/envs/sdk3
|
||||
|
||||
When you want to enable your environment so that you can develop inside of it,
|
||||
you *activate* it. To activate an environment, run the /bin/activate
|
||||
|
@ -14,16 +14,15 @@ Run
|
||||
|
||||
In order to run the entire unit test suite, simply run the ``tox`` command
|
||||
inside of your source checkout. This will attempt to run every test command
|
||||
listed inside of ``tox.ini``, which includes Python 2.7, 3.4, PyPy,
|
||||
listed inside of ``tox.ini``, which includes Python 2.7, 3.5,
|
||||
and a PEP 8 check. You should run the full test suite on all versions before
|
||||
submitting changes for review in order to avoid unexpected failures in the
|
||||
continuous integration system.::
|
||||
|
||||
(sdk3)$ tox
|
||||
...
|
||||
py34: commands succeeded
|
||||
py35: commands succeeded
|
||||
py27: commands succeeded
|
||||
pypy: commands succeeded
|
||||
pep8: commands succeeded
|
||||
congratulations :)
|
||||
|
||||
@ -31,8 +30,8 @@ During development, it may be more convenient to run a subset of the tests
|
||||
to keep test time to a minimum. You can choose to run the tests only on one
|
||||
version. A step further is to run only the tests you are working on.::
|
||||
|
||||
(sdk3)$ tox -e py34 # Run run the tests on Python 3.4
|
||||
(sdk3)$ tox -e py34 TestContainer # Run only the TestContainer tests on 3.4
|
||||
(sdk3)$ tox -e py35 # Run run the tests on Python 3.5
|
||||
(sdk3)$ tox -e py35 TestContainer # Run only the TestContainer tests on 3.5
|
||||
|
||||
Functional Tests
|
||||
----------------
|
||||
|
@ -78,7 +78,7 @@ class TestTaskManager(base.TestCase):
|
||||
|
||||
This test is aimed to six.reraise(), called in Task::wait().
|
||||
Specifically, we test if we get the same behaviour with all the
|
||||
configured interpreters (e.g. py27, p34, pypy, ...)
|
||||
configured interpreters (e.g. py27, p35, ...)
|
||||
"""
|
||||
self.assertRaises(TestException, self.manager.submit_task, TaskTest())
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user