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