diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:58:22 +0000 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2017-02-02 02:58:22 +0000 |
commit | 4cc8afd3b1526b621e4f6d2f63007d3c46b860f0 (patch) | |
tree | fe32e4a0acb0cb912d78e7bd8e0ace2146a60ec3 /tests/test_module.py | |
parent | 8a2e9eabcae94013b4d5987b4bc31487efdef102 (diff) | |
download | psycopg2-fast-test.tar.gz |
Further skipping of slow testsfast-test
Diffstat (limited to 'tests/test_module.py')
-rwxr-xr-x | tests/test_module.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_module.py b/tests/test_module.py index 6a1606d..b166bac 100755 --- a/tests/test_module.py +++ b/tests/test_module.py @@ -26,8 +26,8 @@ import os import sys from subprocess import Popen -from testutils import unittest, skip_before_python, skip_before_postgres -from testutils import ConnectingTestCase, skip_copy_if_green, script_to_py3 +from testutils import (unittest, skip_before_python, skip_before_postgres, + ConnectingTestCase, skip_copy_if_green, script_to_py3, slow) import psycopg2 @@ -311,6 +311,7 @@ class ExceptionsTestCase(ConnectingTestCase): class TestExtensionModule(unittest.TestCase): + @slow def test_import_internal(self): # check that the internal package can be imported "naked" # we may break this property if there is a compelling reason to do so, |