helenai commited on
Commit
1ace555
·
verified ·
1 Parent(s): f0ee190

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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("(OV.*PipelineTest)", item)
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