I have a common test suite and I need to perform it with rebar. Usually it is done with command
rebar ct suites=mysuite
But there is an obstacle. My suite is required configuration file and I need to specify it when I am performing tests. ct_run allows to do it with
ct_run -config <configfile>
Does anybody know how can I specify config file with rebar?