No need to set PYTHONPATH before testing

This commit is contained in:
laggykiller 2025-02-10 02:21:43 +08:00
parent e088d82dc5
commit 074384e304
No known key found for this signature in database
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,9 @@
import optparse
import sys
import unittest
from os.path import dirname
sys.path.append(dirname(dirname(__file__)))
from tests.backup import suite as backup_suite
from tests.dbapi import suite as dbapi_suite