File tree Expand file tree Collapse file tree 1 file changed +17
-12
lines changed Expand file tree Collapse file tree 1 file changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -3,28 +3,33 @@ package(default_visibility = ["//visibility:public"])
3
3
load ("@subpar//:subpar.bzl" , "par_binary" )
4
4
5
5
py_library (
6
- name = ' shared' ,
7
- srcs = glob ([' shared/*.py' ]),
6
+ name = " shared" ,
7
+ srcs = glob ([" shared/*.py" ]),
8
8
)
9
9
10
10
py_library (
11
- name = ' simulator' ,
12
- srcs = glob ([' simulator_control/*.py' ]),
11
+ name = " simulator" ,
12
+ srcs = glob ([" simulator_control/*.py" ]),
13
13
deps = [
14
- ' :shared' ,
14
+ " :shared" ,
15
15
],
16
16
)
17
17
18
18
par_binary (
19
- name = ' ios_test_runner' ,
19
+ name = " ios_test_runner" ,
20
20
srcs = glob (
21
- [' test_runner/*.py' ],
22
- exclude = [' test_runner/TestProject/**' ]
21
+ [" test_runner/*.py" ],
22
+ exclude = [" test_runner/TestProject/**" ],
23
23
),
24
- main = 'test_runner/ios_test_runner.py' ,
24
+ compiler_args = [
25
+ "--interpreter" ,
26
+ "/usr/bin/python2.7" ,
27
+ ],
28
+ data = glob (["test_runner/TestProject/**" ]),
29
+ main = "test_runner/ios_test_runner.py" ,
30
+ python_version = "PY2" ,
25
31
deps = [
26
- ' :shared' ,
27
- ' :simulator' ,
32
+ " :shared" ,
33
+ " :simulator" ,
28
34
],
29
- data = glob (['test_runner/TestProject/**' ]),
30
35
)
You can’t perform that action at this time.
0 commit comments