Unverified Commit 9abe2f5e authored by Zhang Hua's avatar Zhang Hua
Browse files

test/server_poll.py: use absolute path for test

test/server_poll.py: fix absolute path
parent 8e0d16e7
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
import unittest
import requests
import time
import os
from modules.paths import script_path


def run_tests(proc, test_dir):
@@ -15,8 +17,8 @@ def run_tests(proc, test_dir):
                break
    if proc.poll() is None:
        if test_dir is None:
            test_dir = "test"
        suite = unittest.TestLoader().discover(test_dir, pattern="*_test.py", top_level_dir="test")
            test_dir = os.path.join(script_path, "test")
        suite = unittest.TestLoader().discover(test_dir, pattern="*_test.py", top_level_dir=test_dir)
        result = unittest.TextTestRunner(verbosity=2).run(suite)
        return len(result.failures) + len(result.errors)
    else: