1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

add py2 tests

This commit is contained in:
Shlomi Fish 2018-05-01 17:45:37 +03:00
parent 6c46979284
commit 6304994ed4
2 changed files with 2 additions and 3 deletions

View file

@ -216,6 +216,7 @@ for ver in [2, 3]:
for mod in [
'pysol_tests.acard_unit',
'pysol_tests.import_file1',
'pysol_tests.latin1_conv_unit',
'pysol_tests.ms_deals1',
]:
open(os.path.join(".", "tests", "unit-generated",

View file

@ -1,7 +1,5 @@
#!/usr/bin/env python3
# Written by Shlomi Fish, under the MIT Expat License.
# imports
import unittest
from pysollib.mfxutil import latin1_normalize
@ -11,7 +9,7 @@ class MyTests(unittest.TestCase):
self.assertEqual(latin1_normalize('HELLO%%good'), 'hellogood')
if __name__ == '__main__':
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)