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

Allow to skip python2 tests.

So one won't have to have these deps installed.
This commit is contained in:
Shlomi Fish 2019-01-18 20:41:07 +02:00
parent ed18fd8156
commit 0c19541e8d

View file

@ -1,10 +1,14 @@
#!/usr/bin/env python #!/usr/bin/env python
# Written by Shlomi Fish, under the MIT Expat License. # Written by Shlomi Fish, under the MIT Expat License.
import os
import os.path import os.path
import re
from sys import platform from sys import platform
IS_MAC = (platform == "darwin") IS_MAC = (platform == "darwin")
PY_VERS = ([] if re.search("\\bSKIP_PY2\\b",
os.getenv('TEST_TAGS', '')) else [2])+[3]
for module_name in \ for module_name in \
[ [
'pysollib.acard', 'pysollib.acard',
@ -204,7 +208,7 @@ for module_name in \
'pysollib.wizardutil', 'pysollib.wizardutil',
]: ]:
is_gtk = ("gtk" in module_name) is_gtk = ("gtk" in module_name)
for ver in [2, 3]: for ver in PY_VERS:
if ((not is_gtk) or (ver == 2 and (not IS_MAC))): if ((not is_gtk) or (ver == 2 and (not IS_MAC))):
def fmt(s): def fmt(s):
return s % {'module_name': module_name, 'ver': ver} return s % {'module_name': module_name, 'ver': ver}
@ -216,7 +220,7 @@ import %(module_name)s
print('ok 1 - imported') print('ok 1 - imported')
''')) '''))
for ver in [2, 3]: for ver in PY_VERS:
for mod in [ for mod in [
'pysol_tests.acard_unit', 'pysol_tests.acard_unit',
'pysol_tests.hint', 'pysol_tests.hint',