Skip to content

Commit 2fb1d46

Browse files
committed
[ExecuTorch] Arm Ethos: Add conftest TARGET
Pull Request resolved: #8559 As title. ghstack-source-id: 268178172 @exported-using-ghexport @bypass-github-export-checks @bypass-github-pytorch-ci-checks @bypass-github-executorch-ci-checks Differential Revision: [D69714021](https://our.internmc.facebook.com/intern/diff/D69714021/)
1 parent 728c255 commit 2fb1d46

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

backends/arm/test/TARGETS

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
22

33
python_library(
4-
name = "common",
5-
srcs = ["common.py"],
4+
name = "conftest",
5+
srcs = ["conftest.py"],
6+
deps = [
7+
"//executorch/exir:lib",
8+
]
9+
)
10+
11+
python_library(
12+
name = "runner_utils",
13+
srcs = ["runner_utils.py"],
614
deps = [
15+
":conftest",
716
"//executorch/backends/xnnpack/test/tester:tester",
817
"//executorch/backends/arm:arm_backend",
918
"//executorch/exir:lib",
@@ -12,12 +21,14 @@ python_library(
1221
)
1322

1423
python_library(
15-
name = "runner_utils",
16-
srcs = ["runner_utils.py"],
24+
name = "common",
25+
srcs = ["common.py"],
1726
deps = [
27+
":runner_utils",
1828
"//executorch/backends/xnnpack/test/tester:tester",
1929
"//executorch/backends/arm:arm_backend",
2030
"//executorch/exir:lib",
2131
"//executorch/exir/backend:compile_spec_schema",
32+
"fbsource//third-party/pypi/pytest:pytest",
2233
]
2334
)

0 commit comments

Comments
 (0)