I have a Rebar project with a top-level release directory that just includes the component applications as dependencies and contains the reltool configuration.
Some of my applications have Common Test suites in test
subdirectories, and I can run those tests with rebar ct
.
Now I want to create a Common Test suite for the entire release. However, when I run rebar ct skip_deps=true
in the top-level directory, I just get:
Command 'ct' not understood or not applicable
How can I make Rebar run my tests?