Update app.py
Browse files
app.py
CHANGED
|
@@ -24,7 +24,7 @@ def generate_model_list():
|
|
| 24 |
tests = []
|
| 25 |
d = {}
|
| 26 |
for item in globals().copy():
|
| 27 |
-
match = re.match("(OVModelFor.*IntegrationTest)", item) or re.match("(
|
| 28 |
if match:
|
| 29 |
tests.append(match.group(1))
|
| 30 |
|
|
|
|
| 24 |
tests = []
|
| 25 |
d = {}
|
| 26 |
for item in globals().copy():
|
| 27 |
+
match = re.match("(OVModelFor.*IntegrationTest)", item) or re.match("(OVPipelineFor.*Test)", item)
|
| 28 |
if match:
|
| 29 |
tests.append(match.group(1))
|
| 30 |
|