Skip to content

Commit

Permalink
{CI} Temporarily skip the detection of the partnercenter extension in…
Browse files Browse the repository at this point in the history
… IndexRefDocVerify (#6474)
  • Loading branch information
wangzelin007 committed Jul 5, 2023
1 parent 0b2cbaa commit 2c30c07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/ci/index_ref_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@

candidates_sorted = sorted(filtered_exts, key=lambda c: parse_version(c['metadata']['version']), reverse=True)
chosen = candidates_sorted[0]
ALL_TESTS.append((extension_name, chosen['downloadUrl'], chosen['filename']))
if extension_name != 'partnercenter':
ALL_TESTS.append((extension_name, chosen['downloadUrl'], chosen['filename']))


class TestIndexRefDocsMeta(type):
Expand Down

0 comments on commit 2c30c07

Please sign in to comment.