mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Fix to allow functional tests to run on Windows.
This commit is contained in:
parent
1b05b7824f
commit
edbe4cb2fb
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
import unittest
|
import unittest
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
from helper_functions import _compare_xlsx_files
|
from helper_functions import _compare_xlsx_files
|
||||||
|
|
||||||
|
|
||||||
@ -28,8 +29,14 @@ class XLSXBaseTest(unittest.TestCase):
|
|||||||
def run_exe_test(self, exe_name, exp_filename=None):
|
def run_exe_test(self, exe_name, exp_filename=None):
|
||||||
"""Run C exe and compare output xlsx file with the Excel file."""
|
"""Run C exe and compare output xlsx file with the Excel file."""
|
||||||
|
|
||||||
|
# Create the executable command
|
||||||
|
if sys.platform == 'win32':
|
||||||
|
command = r'cd test\functional\src && %s.exe' % exe_name
|
||||||
|
else:
|
||||||
|
command = 'cd test/functional/src && ./%s' % exe_name
|
||||||
|
|
||||||
# Run the C executable to generate the "got" xlsx file.
|
# Run the C executable to generate the "got" xlsx file.
|
||||||
got = os.system("cd test/functional/src; ./%s" % exe_name)
|
got = os.system(command)
|
||||||
self.assertEqual(got, self.no_system_error)
|
self.assertEqual(got, self.no_system_error)
|
||||||
|
|
||||||
# Create the path/file names for the xlsx/xlsm files to compare.
|
# Create the path/file names for the xlsx/xlsm files to compare.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user