Commit 6b484f8a authored by Marius Gedminas's avatar Marius Gedminas
parent 9bcaa79b
...@@ -135,7 +135,7 @@ class SerializerFunctestCase(unittest.TestCase): ...@@ -135,7 +135,7 @@ class SerializerFunctestCase(unittest.TestCase):
fqn = os.path.join(self._tempdir, 'Data.fs') fqn = os.path.join(self._tempdir, 'Data.fs')
prep_args = [sys.executable, '-c', prep_args = [sys.executable, '-c',
'from ZODB.tests.testSerialize import _functest_prep; ' 'from ZODB.tests.testSerialize import _functest_prep; '
'_functest_prep("%s")' % fqn] '_functest_prep(%s)' % repr(fqn)]
# buildout doesn't arrange for the sys.path to be exported, # buildout doesn't arrange for the sys.path to be exported,
# so force it ourselves # so force it ourselves
environ = os.environ.copy() environ = os.environ.copy()
...@@ -143,7 +143,7 @@ class SerializerFunctestCase(unittest.TestCase): ...@@ -143,7 +143,7 @@ class SerializerFunctestCase(unittest.TestCase):
subprocess.check_call(prep_args, env=environ) subprocess.check_call(prep_args, env=environ)
load_args = [sys.executable, '-c', load_args = [sys.executable, '-c',
'from ZODB.tests.testSerialize import _functest_load; ' 'from ZODB.tests.testSerialize import _functest_load; '
'_functest_load("%s")' % fqn] '_functest_load(%s)' % repr(fqn)]
subprocess.call(load_args, env=environ) subprocess.call(load_args, env=environ)
def _working_failing_datetimes(): def _working_failing_datetimes():
......
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