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

Add python2 tests.

This commit is contained in:
Shlomi Fish 2018-05-01 17:09:12 +03:00
parent 46fafaef58
commit 665985ec6d
3 changed files with 11 additions and 1 deletions

View file

@ -123,7 +123,7 @@ KD QC 5C QH 6S 3D
self.assertEqual(1, 1, 'card2str2 works')
if __name__ == '__main__':
def mymain():
from pycotap import TAPTestRunner
suite = unittest.TestLoader().loadTestsFromTestCase(MyTests)
TAPTestRunner().run(suite)

View file

@ -0,0 +1,5 @@
#!/usr/bin/python
from pysol_tests.import_file1 import mymain
mymain()

View file

@ -0,0 +1,5 @@
#!/usr/bin/python3
from pysol_tests.import_file1 import mymain
mymain()