diff options
Diffstat (limited to 'meta/lib/oeqa/utils')
| -rw-r--r-- | meta/lib/oeqa/utils/gitarchive.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/lib/oeqa/utils/gitarchive.py b/meta/lib/oeqa/utils/gitarchive.py index 2fe48cdcac..10cb267dfa 100644 --- a/meta/lib/oeqa/utils/gitarchive.py +++ b/meta/lib/oeqa/utils/gitarchive.py | |||
| @@ -235,6 +235,8 @@ def get_test_runs(log, repo, tag_name, **kwargs): | |||
| 235 | revs = [] | 235 | revs = [] |
| 236 | for tag in tags: | 236 | for tag in tags: |
| 237 | m = tag_re.match(tag) | 237 | m = tag_re.match(tag) |
| 238 | if not m: | ||
| 239 | continue | ||
| 238 | groups = m.groupdict() | 240 | groups = m.groupdict() |
| 239 | revs.append([groups[f] for f in undef_fields] + [tag]) | 241 | revs.append([groups[f] for f in undef_fields] + [tag]) |
| 240 | 242 | ||
