about summary refs log tree commit diff
path: root/pkgs/development/python-modules/sqlalchemy-utils/skip-database-tests.patch
blob: 887128dd44ce8552163c488479ba625c8dfecf02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
diff --git a/conftest.py b/conftest.py
index 9e146cd..8dbc9a5 100644
--- a/conftest.py
+++ b/conftest.py
@@ -61,16 +61,12 @@ def mysql_db_user():
 
 @pytest.fixture
 def postgresql_dsn(postgresql_db_user, postgresql_db_password, db_name):
-    return 'postgresql://{0}:{1}@localhost/{2}'.format(
-        postgresql_db_user,
-        postgresql_db_password,
-        db_name
-    )
+    pytest.skip()
 
 
 @pytest.fixture
 def mysql_dsn(mysql_db_user, db_name):
-    return 'mysql+pymysql://{0}@localhost/{1}'.format(mysql_db_user, db_name)
+    pytest.skip()
 
 
 @pytest.fixture
@@ -108,8 +104,7 @@ def mssql_db_driver():
 
 @pytest.fixture
 def mssql_dsn(mssql_db_user, mssql_db_password, mssql_db_driver, db_name):
-    return 'mssql+pyodbc://{0}:{1}@localhost/{2}?driver={3}'\
-        .format(mssql_db_user, mssql_db_password, db_name, mssql_db_driver)
+    pytest.skip()
 
 
 @pytest.fixture
diff --git a/tests/functions/test_database.py b/tests/functions/test_database.py
index 0ad6721..83f208d 100644
--- a/tests/functions/test_database.py
+++ b/tests/functions/test_database.py
@@ -76,28 +76,6 @@ class TestDatabasePostgres(DatabaseTest):
                 "TEMPLATE my_template") in str(excinfo.value)
 
 
-class TestDatabasePostgresPg8000(DatabaseTest):
-
-    @pytest.fixture
-    def dsn(self, postgresql_db_user, postgresql_db_password):
-        return 'postgresql+pg8000://{0}:{1}@localhost/{2}'.format(
-            postgresql_db_user,
-            postgresql_db_password,
-            'db_to_test_create_and_drop_via_pg8000_driver'
-        )
-
-
-class TestDatabasePostgresPsycoPG2CFFI(DatabaseTest):
-
-    @pytest.fixture
-    def dsn(self, postgresql_db_user, postgresql_db_password):
-        return 'postgresql+psycopg2cffi://{0}:{1}@localhost/{2}'.format(
-            postgresql_db_user,
-            postgresql_db_password,
-            'db_to_test_create_and_drop_via_psycopg2cffi_driver'
-        )
-
-
 @pytest.mark.usefixtures('postgresql_dsn')
 class TestDatabasePostgresWithQuotedName(DatabaseTest):
 
@@ -116,31 +94,6 @@ class TestDatabasePostgresWithQuotedName(DatabaseTest):
                 'TEMPLATE "my-template"') in str(excinfo.value)
 
 
-class TestDatabasePostgresCreateDatabaseCloseConnection(object):
-    def test_create_database_twice(
-        self,
-        postgresql_db_user,
-        postgresql_db_password
-    ):
-        dsn_list = [
-            'postgresql://{0}:{1}@localhost/db_test_sqlalchemy-util-a'.format(
-                postgresql_db_user,
-                postgresql_db_password
-            ),
-            'postgresql://{0}:{1}@localhost/db_test_sqlalchemy-util-b'.format(
-                postgresql_db_user,
-                postgresql_db_password
-            ),
-        ]
-        for dsn_item in dsn_list:
-            assert not database_exists(dsn_item)
-            create_database(dsn_item, template="template1")
-            assert database_exists(dsn_item)
-        for dsn_item in dsn_list:
-            drop_database(dsn_item)
-            assert not database_exists(dsn_item)
-
-
 @pytest.mark.usefixtures('mssql_dsn')
 class TestDatabaseMssql(DatabaseTest):