Fix build action

This commit is contained in:
laggykiller 2025-02-10 02:48:56 +08:00
parent 074384e304
commit b15181b80c
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View file

@ -3,7 +3,7 @@ import sys
import unittest
from os.path import dirname
sys.path.append(dirname(dirname(__file__)))
sys.path.insert(0, dirname(dirname(__file__)))
from tests.backup import suite as backup_suite
from tests.dbapi import suite as dbapi_suite