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:36:41 +03:00
parent 7860f47363
commit 6ec197daaf
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,6 @@
#!/usr/bin/env python
# Written by Shlomi Fish, under the MIT Expat License.
import os.path
for module_name in \
[
@ -212,6 +214,7 @@ print('ok 1 - imported')
for ver in [2, 3]:
for mod in [
'pysol_tests.acard_unit',
'pysol_tests.import_file1',
'pysol_tests.ms_deals1',
]:

View file

@ -1,4 +1,3 @@
#!/usr/bin/env python3
# Written by Shlomi Fish, under the MIT Expat License.
import unittest
@ -22,7 +21,7 @@ class MyTests(unittest.TestCase):
self.assertEqual(card2.rank, 7, 'card2.rank')
if __name__ == '__main__':
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)