Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #716 from talentdeficit/eunit_file_arg | Fred Hebert | 2015-08-27 | 1 | -2/+58 |
|\ | | | | | add support for `rebar3 eunit --file=...' | ||||
| * | add support for `rebar3 eunit --file=...' | alisdair sullivan | 2015-08-15 | 1 | -2/+58 |
| | | |||||
* | | Merge pull request #748 from tsloughter/pkg_attribute | Fred Hebert | 2015-08-27 | 2 | -1/+145 |
|\ \ | | | | | | | support pkg attribute on dep to declare package name different from app name | ||||
| * | | Basic package aliasing tests | Fred Hebert | 2015-08-26 | 2 | -1/+145 |
| | | | |||||
* | | | fix pkgs provider output for new package index format | Tristan Sloughter | 2015-08-24 | 1 | -1/+11 |
|/ / | |||||
* | | override 'deps' now automatically overrides '{deps,default}' | Tristan Sloughter | 2015-08-23 | 1 | -2/+42 |
| | | |||||
* | | use 'default' for default hex repo path in cache and include in info messages | Tristan Sloughter | 2015-08-22 | 1 | -1/+2 |
| | | |||||
* | | do not override user cli supplied outputdir for relx | Tristan Sloughter | 2015-08-22 | 1 | -4/+29 |
| | | |||||
* | | add back removed tests | Tristan Sloughter | 2015-08-21 | 1 | -3/+15 |
| | | |||||
* | | replace use of dict of packages and registry with single ets table | Tristan Sloughter | 2015-08-21 | 2 | -39/+42 |
| | | |||||
* | | this patch treats pkg and src deps as equals, so level decides winner | Tristan Sloughter | 2015-08-21 | 3 | -26/+8 |
| | | | | | | | | | | | | | | | | Instead fetching and resolving src deps (which could depend on pkg deps) and then pkg deps this patch combines the two into a single set of iterations by level. The only difference between src and pkg deps in this new install_deps is how their deps list is found -- from the config or lock file for src deps and from the neighbors of the vertex for pkg. | ||||
* | | speed up tests a bit by setting global_rebar_dir | pvmart | 2015-08-20 | 1 | -0/+2 |
| | | |||||
* | | update ct to play nice with previous commit | pvmart | 2015-08-19 | 2 | -5/+5 |
| | | |||||
* | | handle new tests for mix package types (git/pkg) | Tristan Sloughter | 2015-08-16 | 1 | -38/+15 |
| | | |||||
* | | All dep overrides in packages are blocked | Fred Hebert | 2015-08-16 | 1 | -1/+1 |
| | | | | | | | | Just rework the error message. | ||||
* | | Review rule about dep priorities | Fred Hebert | 2015-08-16 | 1 | -2/+3 |
| | | | | | | | | | | On a single app's dep list, the first noted wins if there's a duplicate between packages and sources, rather than favoring source there anyway. | ||||
* | | Add tests for mixed deps installs | Fred Hebert | 2015-08-16 | 8 | -92/+286 |
| | | | | | | | | | | Requires a rework of other test suites using the same dep-handling mechanism. | ||||
* | | update lock tests to not expect lock for non-default profile run | Tristan Sloughter | 2015-08-13 | 1 | -3/+12 |
| | | |||||
* | | install package deps in same level/profile order as src deps | Tristan Sloughter | 2015-08-13 | 1 | -2/+2 |
|/ | |||||
* | upgrade depends on the lock provider and lock prv sets state | Tristan Sloughter | 2015-08-02 | 1 | -6/+4 |
| | |||||
* | add test for clean --all | Tristan Sloughter | 2015-07-28 | 1 | -2/+36 |
| | |||||
* | add support for old format otp versions | Tristan Sloughter | 2015-07-25 | 1 | -1/+11 |
| | |||||
* | parse old format of OTP versions | Tristan Sloughter | 2015-07-24 | 1 | -0/+8 |
| | |||||
* | Add functions to validate OTP release in use | Derek Brown | 2015-07-24 | 1 | -1/+50 |
| | | | | | | | | | | | | In the spirit of Original Rebar's "require_min_otp_vsn", this adds rebar_utils:check_min_otp_version/1 (taking a string containing the minimum version) and rebar_utils:check_blacklisted_otp_versions/1 (taking a list of regular expression strings), as well as tests in rebar_utils_SUITE. They're currently only called by the tests- how/where to best place calls to them from non-test code needs to be determined (at which point two corresponding rebar.config keys can be supported). For example, the version probably shouldn't be enforced when just running "rebar3 help". | ||||
* | do not install profile deps of deps | Tristan Sloughter | 2015-07-18 | 2 | -2/+35 |
| | |||||
* | only look for top level apps and those directly under apps/ or lib/ | Tristan Sloughter | 2015-07-16 | 6 | -37/+37 |
| | |||||
* | Failing case for unstable upgrade lock files | Fred Hebert | 2015-07-08 | 2 | -5/+35 |
| | |||||
* | ensure necessary directories exist to compile mibs files | Tristan Sloughter | 2015-07-06 | 1 | -3/+49 |
| | |||||
* | Merge pull request #579 from carlosedp/add-proxy | Tristan Sloughter | 2015-07-05 | 1 | -1/+67 |
|\ | | | | | Add proxy support to bootstrap and rebar3. Enhancement #561. | ||||
| * | Added version check based on commit ↵ | CarlosEDP | 2015-07-04 | 1 | -4/+7 |
| | | | | | | | | https://github.com/ferd/rebar3/commit/74c68478aac948beccc80e68c5ac6a9eb578eceb | ||||
| * | Refactor tests to init/exec/end. Check OTP version to skip https test on OTP ↵ | CarlosEDP | 2015-07-03 | 1 | -39/+45 |
| | | | | | | | | =< 15. | ||||
| * | Added testcases for http and https proxy use. | CarlosEDP | 2015-07-03 | 1 | -1/+58 |
| | | |||||
* | | wip: deps install refactor | Fred Hebert | 2015-07-02 | 2 | -8/+58 |
| | | |||||
* | | Merge pull request #583 from talentdeficit/remove_cover_print_enabled | Tristan Sloughter | 2015-07-01 | 1 | -20/+1 |
|\ \ | |/ |/| | remove `cover_print_enabled` and `cover_data_dir` config options and replace with `cover_opts` | ||||
| * | remove `cover_print_enabled` and `cover_data_dir` config options | alisdair sullivan | 2015-07-01 | 1 | -20/+1 |
| | | | | | | | | and replace with `cover_opts` | ||||
* | | setup hex httpc profile and http opts. needed also for proxy | Tristan Sloughter | 2015-06-29 | 1 | -4/+4 |
| | | |||||
* | | Merge pull request #557 from tsloughter/relx_args | Fred Hebert | 2015-06-28 | 1 | -1/+20 |
|\ \ | | | | | | | only reverse some relx args, fixes profile usage for relx | ||||
| * | | add test of relx config sorting with 'extend release' | Tristan Sloughter | 2015-06-28 | 1 | -1/+20 |
| | | | |||||
* | | | Use same random seeding function for random_name and random_vsn | Viacheslav V. Kovalev | 2015-06-28 | 1 | -3/+8 |
| | | | |||||
* | | | Fixed review comments | Daniel Widgren | 2015-06-26 | 1 | -19/+1 |
| | | | |||||
* | | | Some fixes after review | Viacheslav V. Kovalev | 2015-06-26 | 2 | -5/+6 |
| | | | |||||
* | | | Fixed so that release tests now pass. Got all green tests. | Daniel Widgren | 2015-06-26 | 1 | -1/+19 |
| | | | |||||
* | | | Fix rebar_hooks_SUITE:run_hooks_for_plugins/1 | Viacheslav Kovalev | 2015-06-26 | 1 | -1/+1 |
| | | | | | | | | | | | | Test required `touch` utility to present on user's machine. Remove this dependency. | ||||
* | | | Fix rebar_utils:sh on windows | Viacheslav V. Kovalev | 2015-06-26 | 1 | -2/+15 |
| | | | |||||
* | | | Fix multi_app_default_dirs test on windows. | Viacheslav Kovalev | 2015-06-26 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | Seed random with erlang:now() because os:timestamp precision is not enough on windows. | ||||
* | | | Fixed two tests for windows 8.1 and added touch functionality | Daniel Widgren | 2015-06-26 | 1 | -3/+5 |
|/ / | |||||
* | | Make the test work on more versions | Fred Hebert | 2015-06-26 | 1 | -1/+1 |
| | | |||||
* | | Adding erl_first_files test | Fred Hebert | 2015-06-26 | 2 | -3/+45 |
| | | | | | | | | | | | | The test works by using a parse transform that stamps modules with an attribute as it runs them. It then compiles everything, loads the module, and makes sure the stamps respect the defined order. | ||||
* | | Adding tests for locks | Fred Hebert | 2015-06-25 | 1 | -11/+23 |
| | | |||||
* | | Add error message for bad provider hook, fixes #521 | Tristan Sloughter | 2015-06-19 | 1 | -1/+1 |
| | |