File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
2
2
3
3
python_library(
4
- name = "common ",
5
- srcs = ["common .py"],
4
+ name = "conftest ",
5
+ srcs = ["conftest .py"],
6
6
deps = [
7
- "//executorch/backends/xnnpack/test/tester:tester",
8
- "//executorch/backends/arm:arm_backend",
9
7
"//executorch/exir:lib",
10
- "//executorch/exir/backend:compile_spec_schema",
11
8
]
12
9
)
13
10
14
11
python_library(
15
12
name = "runner_utils",
16
13
srcs = ["runner_utils.py"],
17
14
deps = [
15
+ ":conftest",
18
16
"//executorch/backends/xnnpack/test/tester:tester",
19
17
"//executorch/backends/arm:arm_backend",
20
18
"//executorch/exir:lib",
@@ -23,10 +21,14 @@ python_library(
23
21
)
24
22
25
23
python_library(
26
- name = "conftest ",
27
- srcs = ["conftest .py"],
24
+ name = "common ",
25
+ srcs = ["common .py"],
28
26
deps = [
27
+ ":runner_utils",
28
+ "//executorch/backends/xnnpack/test/tester:tester",
29
+ "//executorch/backends/arm:arm_backend",
29
30
"//executorch/exir:lib",
31
+ "//executorch/exir/backend:compile_spec_schema",
30
32
"fbsource//third-party/pypi/pytest:pytest",
31
33
]
32
34
)
You can’t perform that action at this time.
0 commit comments