File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ tune a set of run parameters (such as logging settings); you can find
4040[ here] ( docs/config/run.md ) more information on the configuration file.
4141The application requires one or more ** tests sets** to run. The ` sipssert `
4242application starts the engine controller, which then runs each ** tests set** .
43+ If no ** test set** is provided, the current working directory is used.
4344 * Each ** tests set** provided as parameter represents a directory which
4445consists of multiple ** scenarios** ; it may also contain a
4546[ ` config.yml ` ] ( docs/config/tests-set.md ) file and
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ The run configuration file consists of the following settings:
1717 * ` level ` : debugging level of the controller (Default: ` INFO ` )
1818 * ` timestamp ` : adds timestamp to genereated logs (Default: ` true ` )
1919* ` tests ` : a list of tests sets to run - these represent the default set of
20- tests to be run, unless specified as arguments otherwise (Default: empty)
20+ tests to be run, unless specified as arguments otherwise (Default: current
21+ working directory)
2122* ` test ` : a list of test filters to be used unless specified as arguments
2223through the (` -t|--test ` argument) (Default: empty)
2324* ` exclude ` : a list of exclude filters to be used unless specified as
@@ -33,4 +34,6 @@ logging:
3334 console: false
3435 level: INFO
3536 file: controller.log
37+ tests:
38+ - .
3639```
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def __init__(self, args):
4949 self .sets_dirs = args .tests
5050 else :
5151 self .sets_dirs = list (map (os .path .abspath ,
52- self .config .get ("tests" , [])))
52+ self .config .get ("tests" , ["." ])))
5353 test_filters = args .test if len (args .test ) else \
5454 self .config .get ("test" , [])
5555 exclude_filters = args .exclude if len (args .exclude ) else \
You can’t perform that action at this time.
0 commit comments