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
|
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
python_test_host {
name: "py_dont_import_folder_of_entrypoint_test",
main: "mypkg/main.py",
srcs: [
"mypkg/main.py",
"mypkg/mymodule.py",
],
}
python_test_host {
name: "py_dont_import_folder_of_entrypoint_test_embedded_launcher",
main: "mypkg/main.py",
srcs: [
"mypkg/main.py",
"mypkg/mymodule.py",
],
version: {
py3: {
embedded_launcher: true,
},
},
}
|