Fix testing

This commit is contained in:
laggykiller 2024-02-25 12:54:43 +08:00
parent 6ffbe31c43
commit 44b9ffbfa0
10 changed files with 10 additions and 10 deletions

View file

@ -2,14 +2,14 @@ import optparse
import sys
import unittest
from test.backup import suite as backup_suite
from test.dbapi import suite as dbapi_suite
from test.factory import suite as factory_suite
from test.hooks import suite as hooks_suite
from test.regression import suite as regression_suite
from test.transactions import suite as transactions_suite
from test.ttypes import suite as types_suite
from test.userfunctions import suite as userfunctions_suite
from test.test_backup import suite as backup_suite
from test.test_dbapi import suite as dbapi_suite
from test.test_factory import suite as factory_suite
from test.test_hooks import suite as hooks_suite
from test.test_regression import suite as regression_suite
from test.test_transactions import suite as transactions_suite
from test.test_ttypes import suite as types_suite
from test.test_userfunctions import suite as userfunctions_suite
def test(verbosity=1, failfast=False):