push
github
137 of 141 new or added lines in 5 files covered. (97.16%)
360 of 393 relevant lines covered (91.6%)
8.24 hits per line
| 1 |
|
|
|
|
def _check_lintsampler(): |
9✔ |
|
|
try:
|
9✔ |
|
|
import importlib |
9✔ |
|
|
importlib.import_module("lintsampler")
|
9✔ |
|
|
return True |
9✔ |
|
|
except ImportError: |
9✔ |
|
|
return False |
9✔ |
| 9 |
|
|
|
|
def _check_flex(): |
9✔ |
|
|
try:
|
9✔ |
|
|
import importlib |
9✔ |
|
|
importlib.import_module("lintsampler")
|
9✔ |
|
|
return True |
9✔ |
|
NEW
|
except ImportError: |
× |
|
NEW
|
return False |
× |
| 17 |
|