Commit 47638157 authored by Jason R. Coombs's avatar Jason R. Coombs

Just pass 'unittest' as argv[0] - the full path to the file shouldn't be relevant

parent 552ca4d4
from distutils.errors import DistutilsOptionError from distutils.errors import DistutilsOptionError
from unittest import TestLoader from unittest import TestLoader
import unittest
import sys import sys
from pkg_resources import (resource_listdir, resource_exists, normalize_path, from pkg_resources import (resource_listdir, resource_exists, normalize_path,
...@@ -159,7 +158,7 @@ class test(Command): ...@@ -159,7 +158,7 @@ class test(Command):
list(map(sys.modules.__delitem__, del_modules)) list(map(sys.modules.__delitem__, del_modules))
unittest_main( unittest_main(
None, None, [unittest.__file__] + self.test_args, None, None, ['unittest'] + self.test_args,
testLoader=self._resolve_as_ep(self.test_loader), testLoader=self._resolve_as_ep(self.test_loader),
testRunner=self._resolve_as_ep(self.test_runner), testRunner=self._resolve_as_ep(self.test_runner),
) )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment