File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 55from arango import ArangoClient , formatter
66from arango .database import StandardDatabase
77from arango .typings import Json
8- from tests .executors import (
9- TestAsyncApiExecutor ,
10- TestBatchExecutor ,
11- TestTransactionApiExecutor ,
12- )
8+ from tests .executors import TestAsyncApiExecutor , TestTransactionApiExecutor
139from tests .helpers import (
1410 empty_collection ,
1511 generate_col_name ,
@@ -210,13 +206,15 @@ def pytest_generate_tests(metafunc):
210206 bad_async_db ._executor = TestAsyncApiExecutor (bad_conn )
211207 bad_dbs .append (bad_async_db )
212208
213- # Add test batch databases
209+ # Skip test batch databases, as they are deprecated.
210+ """
214211 tst_batch_db = StandardDatabase(tst_conn)
215212 tst_batch_db._executor = TestBatchExecutor(tst_conn)
216213 tst_dbs.append(tst_batch_db)
217214 bad_batch_bdb = StandardDatabase(bad_conn)
218215 bad_batch_bdb._executor = TestBatchExecutor(bad_conn)
219216 bad_dbs.append(bad_batch_bdb)
217+ """
220218
221219 if "db" in metafunc .fixturenames and "bad_db" in metafunc .fixturenames :
222220 metafunc .parametrize ("db,bad_db" , zip (tst_dbs , bad_dbs ))
You can’t perform that action at this time.
0 commit comments