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:
parent
46fafaef58
commit
665985ec6d
3 changed files with 11 additions and 1 deletions
|
@ -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)
|
5
tests/unit/import_file1.py
Normal file
5
tests/unit/import_file1.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
from pysol_tests.import_file1 import mymain
|
||||
|
||||
mymain()
|
5
tests/unit/import_file1_py3.py
Normal file
5
tests/unit/import_file1_py3.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from pysol_tests.import_file1 import mymain
|
||||
|
||||
mymain()
|
Loading…
Add table
Reference in a new issue