From 66af41201f889e7c8ce3615cfff258e2fda364ad Mon Sep 17 00:00:00 2001 From: grbd Date: Wed, 21 Jun 2017 01:15:23 +0100 Subject: Changed to os.pathsep for fixture dirs --- runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtest.py') diff --git a/runtest.py b/runtest.py index d4bc502d..487100b6 100755 --- a/runtest.py +++ b/runtest.py @@ -810,7 +810,7 @@ def run_test(t, io_lock, async=True): if head: fixture_dirs.append(head) fixture_dirs.append(os.path.join(scriptpath, 'test', 'fixture')) - os.environ['FIXTURE_DIRS'] = ';'.join(fixture_dirs) + os.environ['FIXTURE_DIRS'] = os.pathsep.join(fixture_dirs) test_start_time = time_func() if execute_tests: -- cgit v1.2.1