test: mark public_api_guard test with fixme-ivy-aot and no-ivy-jit (#26602)

These tests are currently broken because of the following reasons:
- ivy no longer emits a generated index, so the filename of the main d.ts file is different
- ivy currently exports some symbols that don't match the golden file, this needs investigation

PR Close #26602
This commit is contained in:
Igor Minar 2018-10-28 11:56:47 +01:00 committed by Matias Niemelä
parent 4f250726aa
commit 8bf51db3e7
1 changed files with 4 additions and 0 deletions

View File

@ -26,4 +26,8 @@ def generate_targets(golden_files):
"//packages/%s:%s" % (package_name + target_suffix, directory_name),
],
golden = "tools/public_api_guard/%s" % golden_file,
tags = [
"fixme-ivy-aot", # ivy no longer emits generated index file
"no-ivy-jit", # we will not ship JIT compiled packages to npm
],
)