diff options
| author | Kirill Kuzminykh <cykooz@gmail.com> | 2017-03-01 13:00:10 +0300 |
|---|---|---|
| committer | Kirill Kuzminykh <cykooz@gmail.com> | 2017-03-01 13:00:10 +0300 |
| commit | b1cad5ee8c8bdf8dd5819e77366c36869d53edbb (patch) | |
| tree | 000505872f94844678b68ef9efc346e4402c77ed | |
| parent | 5f012c616d8b593c3bf310e8115563f4e4c04971 (diff) | |
| download | pyramid-b1cad5ee8c8bdf8dd5819e77366c36869d53edbb.tar.gz pyramid-b1cad5ee8c8bdf8dd5819e77366c36869d53edbb.tar.bz2 pyramid-b1cad5ee8c8bdf8dd5819e77366c36869d53edbb.zip | |
The memory leaks test skipped for platform 'pypy'.
| -rw-r--r-- | pyramid/tests/test_integration.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pyramid/tests/test_integration.py b/pyramid/tests/test_integration.py index 09ea85e13..f23e54609 100644 --- a/pyramid/tests/test_integration.py +++ b/pyramid/tests/test_integration.py @@ -9,6 +9,7 @@ import unittest from pyramid.wsgi import wsgiapp from pyramid.view import view_config from pyramid.static import static_view +from pyramid.testing import skip_on from pyramid.compat import ( text_, url_quote, @@ -759,6 +760,7 @@ class MemoryLeaksTest(unittest.TestCase): last_collected = collected return len(gc.get_objects()) + @skip_on('pypy') def test_memory_leaks(self): from pyramid.config import Configurator Configurator().make_wsgi_app() # Initialize all global objects |
