diff options
author | Tristan Sloughter <t@crashfast.com> | 2018-10-05 08:29:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-05 08:29:07 -0600 |
commit | dec484643c233fda9c17d38c1854ba7f3f37547b (patch) | |
tree | cc3c83d55ca3c24000e52f4db8a4a0a5603fae2e /test | |
parent | 6ea0a600b4f560565ca963b69c86b9e9cb0ea0b8 (diff) |
compiler behaviour (#1893)
* add compile type for dynamic project compilation
* new rebar_compiler abstraction for running multiple compilers
rebar_compiler is a new behaviour that a plugin can implement to
be called on any ues of the compile provider to compile source
files and keep track of their dependencies.
* fix check that modules in .app modules list are from src_dirs
* use project_type to find module for building projects
* allow plugins to add project builders and compilers
Diffstat (limited to 'test')
-rw-r--r-- | test/rebar_eunit_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/rebar_eunit_SUITE.erl b/test/rebar_eunit_SUITE.erl index 4805b3d..1a8bade 100644 --- a/test/rebar_eunit_SUITE.erl +++ b/test/rebar_eunit_SUITE.erl @@ -605,4 +605,4 @@ alternate_test_regex(Config) -> Set = {ok, [{application, basic_app}, {module, basic_app_tests}]}, - Set = rebar_prv_eunit:prepare_tests(S).
\ No newline at end of file + Set = rebar_prv_eunit:prepare_tests(S). |