Configuration of bubik tool can be considered on two levels: general and project specific. The general settings are saved in file:
$HOME/.bubik/bubik.ini # unix
%USERPROFILE%\.bubik\bubik.ini # windows
Project specific settings are saved in ini files in project's const directory. It might happen that some of bubik's listeners or handler needs this configuration, so it has to be created even though no settings specific to system under test will be there.
There are few general settings needed to execute bubik tests. The example content of bubik.ini file looks as follows (common section is necessary):
[common]
project_dir = "/home/bwilczek/projects"
default_project = "demo"
store_log_history = false
project_dir - directory where subdirectories for projects are located
default_project - name of default project
store_log_history - boolean flag marking if logs from test execution should be overwritten by another test execution. If set to true then logs will be stored in $HOME/.bubik/tmp (%USERPROFILE%.bubik\tmp in windows) otherwise in log subdirectory in test directory.