forked from JBarberU/strawberry_py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrawberry_config.py.sample
49 lines (38 loc) · 1.36 KB
/
strawberry_config.py.sample
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
# vim: set syntax=python
from xc_target import Target
class Config:
tests_dir = "integration/javascript/iphone"
build_dir = "build"
# Supported build report formats
# build_report_format = None
build_report_format = "xml"
# The build_report_file is ignored if build_report_format == None
build_report_file = "build-report.xml"
# Supported test report formats
# test_report_format = None # No test report
test_report_format = "junit"
# test_report_format = "text"
# The test_report_file is ignored if test_report_format == None
test_report_file = "test-report.xml"
# Uncomment if you don't want to save the results from instruments
# test_results_dir = None
test_results_dir = "test_results"
# Uncomment if you don't want to save the trace from instruments
# instruments_trace_dir = None
instruments_trace_dir = "instruments"
targets = [Target(name="foo", scheme="Foo Scheme", configuration="Debug", bundle_id="com.example.MyApp-Foo"),
Target(name="bar", scheme="Bar Scheme", configuration="Release", bundle_id="com.example.MyApp-Bar")]
device = None
# These all correspond to the commandline arguments to strawberry_py
clean = False
target = None
sdk = "iphonesimulator8.1"
run = False
build = True
test = True
focus = None
exclude = None
retry_count = 1
reinstall = False
verbose = False
debug = False