From ed4244e9324a2f5672269f1cf6d9062abe77a548 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Wed, 23 Oct 2019 22:49:02 +0100 Subject: [PATCH] build: add non-ivy test script to package.json (#33314) This makes it easier to run non-ivy tests locally. PR Close #33314 --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 40af55fb33553..1932771844bfe 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "check-env": "gulp check-env", "commitmsg": "node ./scripts/git/commit-msg.js", "test-ivy-aot": "bazel test --define=compile=aot --build_tag_filters=-no-ivy-aot,-fixme-ivy-aot --test_tag_filters=-no-ivy-aot,-fixme-ivy-aot", + "test-non-ivy": "bazel test --build_tag_filters=-ivy-only --test_tag_filters=-ivy-only", "test-fixme-ivy-aot": "bazel test --define=compile=aot --build_tag_filters=-no-ivy-aot --test_tag_filters=-no-ivy-aot", "list-fixme-ivy-targets": "bazel query --output=label 'attr(\"tags\", \"\\[.*fixme-ivy.*\\]\", //...) except kind(\"sh_binary\", //...) except kind(\"devmode_js_sources\", //...)' | sort", "bazel": "bazel",