forked from jayallen/mt-plugin-log4mt
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.proverc
executable file
·58 lines (44 loc) · 1.39 KB
/
.proverc
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
# -w, -v and --state should be specified on the command line if desired
# Merge test scripts' STDERR with their STDOUT.
--merge
# Print elapsed time after each test.
--timer
# Normalize TAP output in verbose output
--normalize
# Colored test output (default).
--color
# Show full list of TAP parse errors, if any.
--parse
# Show failed tests.
--failures
# Recursively descend into directories.
--recurse
# Add 'lib' to the path for your tests (-Ilib).
--lib
# Typical lib setup for MT. Specify others on the command line using PERL5LIB
-I t/lib
# -I extlib
# -I addons/ConfigAssistant.pack/lib
# -I addons/ConfigAssistant.pack/extlib
# -I addons/Log4MT.plugin/extlib
# -I addons/Log4MT.plugin/lib
# -I addons/Melody-compat.pack/extlib
# -I addons/Melody-compat.pack/lib
# -I addons/Melody-compat.pack/t/lib
# Control prove's persistent state.
# --state=all,save
# Ignore exit status from test scripts.
# --ignore-exit # Ignore exit status from test scripts.
# Run N test jobs in parallel (try 9.)
# DOES NOT CURRENTLY WORK WITH Test::MT!!!!
# --jobs 9
#### Other development tools to specify here or on command line
# -MDevel::TraceINC
# -MDevel::TraceLoad=summary
# -MCarp::Always
# -MCarp::Source::Always
#### Test spec
# If you have a list of tests (or URLs, or anything else you want to test)
# in a file, you can add them to your tests by using a '-':
#
# prove - < my_list_of_things_to_test.txt