<div dir="ltr">Hello,<br><br>I have next structure of my project:<br>.<br>├── deps<br>│ ├── cowboy<br>│ ├── cowlib<br>│ ├── erlang_iconv<br>│ ├── erlydtl<br>│ ├── mochiweb_xpath<br>│ └── ranch<br>├── ebin<br>│ ├── fetchers.beam<br>
│ ├── parsers.beam<br>│ └── wasearch_sup.beam<br>├── <a href="http://erlang.mk">erlang.mk</a><br>├── Makefile<br>├── _rel<br>│ └── ....<br>├── relx<br>├── relx.config<br>├── src<br>│ ├── fetchers.erl<br>│ ├── main_handler.erl<br>
│ ├── parsers.erl<br>│ ├── tests<br>│ │ ├── parsers_SUITE_data<br>│ │ ├── parsers_SUITE.erl<br>│ │ ├── ....<br>│ ├── wasearch_app.erl<br>│ ├── wasearch.app.src<br>│ └── wasearch_sup.erl<br>└── templates<br>
└── index.dtl<br><br>I would prefer to store tests not in `src` directory but rather in `tests` subdirectory. <br>Erlang.mk README says: You can run an individual test suite by using the special <code>test_*</code>
targets. For example if you have a common_test suite named <code>spdy</code>
and you want to run only this suite and not the others, you can
use the <code>make test_spdy</code> command.<br>And of course `make test_parsers` returns `no rule to make target` error. <br>Is there a way to run suites from custom directory with `make_<mod_name_with_suite>` command? <br>
</div>