Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Output inline is set to true in the plugin. | Kasper Timm Hansen | 2015-10-07 | 1 | -2/+2 |
| | | | | | | Change the reporter to just read the option. Pass output_inline where needed in tests. | ||||
* | Add fail fast to test runner. | Kasper Timm Hansen | 2015-09-29 | 1 | -0/+24 |
| | | | | | Passing `--fail-fast` to the test runner will now abort the test run on the first failure. The run continues on any unexpected errors. | ||||
* | Add inline failure reporting to test runner. | Kasper Timm Hansen | 2015-09-28 | 1 | -1/+36 |
| | | | | | | | | | Any failures or errors will be reported inline during the run by default. Skipped tests will be reported if run in verbose mode. Any result is output with failure messages and a rerun snippet for that test. Rerun snippets won't be output after a run, unless `--defer-output` is passed. | ||||
* | do not show "Failed tests" message when a failed test is not | yuuji.yaginuma | 2015-06-23 | 1 | -0/+1 |
| | |||||
* | remove unused variable in reporter test | yuuji.yaginuma | 2015-06-22 | 1 | -1/+0 |
| | |||||
* | make it possible to customize the executable inside rereun snippets. | Yves Senn | 2015-06-13 | 1 | -0/+14 |
| | | | | | | | | | | | | | | | | | | | In the Rails repository we use a `bin/test` executable to run our tests. However the rerun snippets still included `bin/rails test`: BEFORE: ``` Failed tests: bin/rails test test/cases/adapters/postgresql/schema_test.rb:91 ``` AFTER: ``` Failed tests: bin/test test/cases/adapters/postgresql/schema_test.rb:91 ``` | ||||
* | Improve test runner's Minitest integration. | Kasper Timm Hansen | 2015-06-04 | 1 | -111/+0 |
| | | | | | | | | | | | This also adds free mix and matching of directories, files and lines filters. Like so: bin/rails test models/post_test.rb test/integration models/person_test.rb:26 You can also mix in a traditional Minitest filter: bin/rails test test/integration -n /check_it_out/ | ||||
* | Use absolute path on find_method location for the runner | Arthur Neves | 2015-03-19 | 1 | -4/+5 |
| | |||||
* | Fix reporter test and verbose mode | Arthur Neves | 2015-03-18 | 1 | -9/+7 |
| | |||||
* | move `ENV["BACKTRACE"]` support into the TestRunner. | Yves Senn | 2015-03-18 | 1 | -0/+10 |
| | |||||
* | use `bin/rails t` runner in `test_runner_test.rb`. | Yves Senn | 2015-03-18 | 1 | -4/+3 |
| | |||||
* | Fix relative dir call on test runner | Arthur Neves | 2015-03-18 | 1 | -10/+14 |
| | |||||
* | Add tests for runner#test_files method | Arthur Neves | 2015-03-18 | 1 | -0/+14 |
| | |||||
* | Run multiple files on runner | Arthur Neves | 2015-03-18 | 1 | -2/+16 |
| | |||||
* | `-e` / `--environment` for the test runner. | Yves Senn | 2015-03-18 | 1 | -0/+14 |
| | |||||
* | get rid of NAMED_PATTERNS in favor of running a whole directory | Yves Senn | 2015-03-18 | 1 | -0/+8 |
| | |||||
* | add tests for our minitest reporter. | Yves Senn | 2015-03-18 | 1 | -0/+76 |
| | |||||
* | Better file:line parsing and filter method by file too | Arthur Neves | 2015-03-18 | 1 | -0/+26 |
| | |||||
* | spike of a `OptionParser` backed test runner. | Yves Senn | 2015-03-18 | 1 | -0/+21 |