summaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Fix for R15B03Takeru Ohta2015-09-121-3/+5
|
* Change option name from "plt_include_all_deps" to "plt_apps"Takeru Ohta2015-09-121-6/+6
|
* Add a testcase for 'plt_include_all_deps' dialyzer optionTakeru Ohta2015-09-081-2/+69
|
* Add rebar_localfs_resource module for testing purposesTakeru Ohta2015-09-081-0/+38
|
* add test for 'rebar3 plugins list' to ensure it can runTristan Sloughter2015-09-061-1/+8
|
* hooks/artifacts are always run/resolved from an app unless at top of umbrellaTristan Sloughter2015-09-061-4/+18
|
* Merge pull request #760 from tsloughter/app_info_stateFred Hebert2015-09-033-29/+28
|\ | | | | move state into app_info
| * remove state record from app_info recordTristan Sloughter2015-08-311-2/+1
| |
| * wip: move state into app_infoTristan Sloughter2015-08-312-27/+27
| |
* | Revert "Revert "only load packages when needed""Fred Hebert2015-09-021-1/+1
| |
* | Revert "only load packages when needed"Fred Hebert2015-09-021-1/+1
| |
* | only load packages when neededTristan Sloughter2015-09-021-1/+1
|/
* Merge pull request #716 from talentdeficit/eunit_file_argFred Hebert2015-08-271-2/+58
|\ | | | | add support for `rebar3 eunit --file=...'
| * add support for `rebar3 eunit --file=...'alisdair sullivan2015-08-151-2/+58
| |
* | Merge pull request #748 from tsloughter/pkg_attributeFred Hebert2015-08-272-1/+145
|\ \ | | | | | | support pkg attribute on dep to declare package name different from app name
| * | Basic package aliasing testsFred Hebert2015-08-262-1/+145
| | |
* | | fix pkgs provider output for new package index formatTristan Sloughter2015-08-241-1/+11
|/ /
* | override 'deps' now automatically overrides '{deps,default}'Tristan Sloughter2015-08-231-2/+42
| |
* | use 'default' for default hex repo path in cache and include in info messagesTristan Sloughter2015-08-221-1/+2
| |
* | do not override user cli supplied outputdir for relxTristan Sloughter2015-08-221-4/+29
| |
* | add back removed testsTristan Sloughter2015-08-211-3/+15
| |
* | replace use of dict of packages and registry with single ets tableTristan Sloughter2015-08-212-39/+42
| |
* | this patch treats pkg and src deps as equals, so level decides winnerTristan Sloughter2015-08-213-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_dirpvmart2015-08-201-0/+2
| |
* | update ct to play nice with previous commitpvmart2015-08-192-5/+5
| |
* | handle new tests for mix package types (git/pkg)Tristan Sloughter2015-08-161-38/+15
| |
* | All dep overrides in packages are blockedFred Hebert2015-08-161-1/+1
| | | | | | | | Just rework the error message.
* | Review rule about dep prioritiesFred Hebert2015-08-161-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 installsFred Hebert2015-08-168-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 runTristan Sloughter2015-08-131-3/+12
| |
* | install package deps in same level/profile order as src depsTristan Sloughter2015-08-131-2/+2
|/
* upgrade depends on the lock provider and lock prv sets stateTristan Sloughter2015-08-021-6/+4
|
* add test for clean --allTristan Sloughter2015-07-281-2/+36
|
* add support for old format otp versionsTristan Sloughter2015-07-251-1/+11
|
* parse old format of OTP versionsTristan Sloughter2015-07-241-0/+8
|
* Add functions to validate OTP release in useDerek Brown2015-07-241-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 depsTristan Sloughter2015-07-182-2/+35
|
* only look for top level apps and those directly under apps/ or lib/Tristan Sloughter2015-07-166-37/+37
|
* Failing case for unstable upgrade lock filesFred Hebert2015-07-082-5/+35
|
* ensure necessary directories exist to compile mibs filesTristan Sloughter2015-07-061-3/+49
|
* Merge pull request #579 from carlosedp/add-proxyTristan Sloughter2015-07-051-1/+67
|\ | | | | Add proxy support to bootstrap and rebar3. Enhancement #561.
| * Added version check based on commit ↵CarlosEDP2015-07-041-4/+7
| | | | | | | | https://github.com/ferd/rebar3/commit/74c68478aac948beccc80e68c5ac6a9eb578eceb
| * Refactor tests to init/exec/end. Check OTP version to skip https test on OTP ↵CarlosEDP2015-07-031-39/+45
| | | | | | | | =< 15.
| * Added testcases for http and https proxy use.CarlosEDP2015-07-031-1/+58
| |
* | wip: deps install refactorFred Hebert2015-07-022-8/+58
| |
* | Merge pull request #583 from talentdeficit/remove_cover_print_enabledTristan Sloughter2015-07-011-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 optionsalisdair sullivan2015-07-011-20/+1
| | | | | | | | and replace with `cover_opts`
* | setup hex httpc profile and http opts. needed also for proxyTristan Sloughter2015-06-291-4/+4
| |
* | Merge pull request #557 from tsloughter/relx_argsFred Hebert2015-06-281-1/+20
|\ \ | | | | | | only reverse some relx args, fixes profile usage for relx
| * | add test of relx config sorting with 'extend release'Tristan Sloughter2015-06-281-1/+20
| | |