forked from resf/distro-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.bazel
More file actions
71 lines (62 loc) · 1.39 KB
/
Copy pathBUILD.bazel
File metadata and controls
71 lines (62 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
load("@aspect_rules_py//py:defs.bzl", "py_test")
load("@rules_python//python:defs.bzl", py_test_rules = "py_test")
py_test(
name = "test_rpm_helpers",
srcs = ["test_rpm_helpers.py"],
deps = [
"//apollo/rpm_helpers:rpm_helpers_lib",
],
)
py_test(
name = "test_csaf_processing",
srcs = ["test_csaf_processing.py", "test_db_config.py"],
deps = [
"//apollo/rhworker:rhworker_lib",
"//apollo/db:db_lib",
"//common:common_lib", # Add common library dependency
],
)
py_test(
name = "test_rhcsaf",
srcs = ["test_rhcsaf.py"],
deps = [
"//apollo/rhcsaf:rhcsaf_lib",
"//apollo/rpm_helpers:rpm_helpers_lib",
"//common:common_lib",
],
)
py_test(
name = "test_api_keys",
srcs = ["test_api_keys.py"],
deps = [
"//apollo/server:server_lib",
],
)
py_test(
name = "test_auth",
srcs = ["test_auth.py"],
deps = [
"//apollo/server:server_lib",
],
)
py_test(
name = "test_validation",
srcs = ["test_validation.py"],
deps = [
"//apollo/server:server_lib",
],
)
py_test(
name = "test_admin_routes_supported_products",
srcs = ["test_admin_routes_supported_products.py"],
deps = [
"//apollo/server:server_lib",
],
)
py_test(
name = "test_api_osv",
srcs = ["test_api_osv.py"],
deps = [
"//apollo/server:server_lib",
],
)