Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# PHPUnit Test Reporter #
**Contributors:** [octalmage](https://profiles.wordpress.org/octalmage), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [wpamitkumar](https://profiles.wordpress.org/wpamitkumar), [mikeschroder](https://profiles.wordpress.org/mikeschroder), [pfefferle](https://profiles.wordpress.org/pfefferle)
**Tags:** phpunit
**Requires at least:** 4.7
**Tested up to:** 5.5
**Stable tag:** 0.1.3
**License:** GPLv3
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html
**Contributors:** [octalmage](https://profiles.wordpress.org/octalmage), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [wpamitkumar](https://profiles.wordpress.org/wpamitkumar), [kirasong](https://profiles.wordpress.org/kirasong), [pfefferle](https://profiles.wordpress.org/pfefferle), [desrosj](https://profiles.wordpress.org/desrosj), [crixu](https://profiles.wordpress.org/crixu)
**Tags:** phpunit
**Requires at least:** 4.7
**Tested up to:** 5.5
**Stable tag:** 0.2.0
**License:** GPLv3
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html

Captures and displays test results from the PHPUnit Test Runner

Expand Down Expand Up @@ -44,3 +44,9 @@ Check out the [contribution guidelines](https://github.com/WordPress/phpunit-tes
### 0.1.3 (September 23th, 2020) ###
* Include errors along with failures on the error report page ([PR](https://github.com/WordPress/phpunit-test-reporter/pull/84)).
* Change to `integer` built-in type for `commit` field, following updates in WordPress 5.5.

### 0.2.0 (September 17th, 2024) ###
* Prevent invalid HTML markup on test result pages.
* Add a custom Post_List_Table for the results post type that lacks inline edit/quick edit.
* Don't use _get_list_table() as that create the object and triggers some queries. Including the file directly works just as well.
* Allow for multiple reports per commit for the same test bot.
2 changes: 1 addition & 1 deletion phpunit-test-reporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Author URI: https://make.wordpress.org/hosting/
* Text Domain: ptr
* Domain Path: /languages
* Version: 0.1.3
* Version: 0.2.0
* License: GPL v3
*
* @package PTR
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== PHPUnit Test Reporter ===
Contributors: octalmage, danielbachhuber, wpamitkumar, mikeschroder, pfefferle
Contributors: octalmage, danielbachhuber, wpamitkumar, kirasong, pfefferle, desrosj, crixu
Tags: phpunit
Requires at least: 4.7
Tested up to: 5.5
Stable tag: 0.1.3
Stable tag: 0.2.0
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -44,3 +44,10 @@ Check out the [contribution guidelines](https://github.com/WordPress/phpunit-tes
= 0.1.3 (September 23th, 2020) =
* Include errors along with failures on the error report page ([PR](https://github.com/WordPress/phpunit-test-reporter/pull/84)).
* Change to `integer` built-in type for `commit` field, following updates in WordPress 5.5.


= 0.2.0 (September 17th, 2024) =
* Prevent invalid HTML markup on test result pages.
* Add a custom Post_List_Table for the results post type that lacks inline edit/quick edit.
* Don't use _get_list_table() as that create the object and triggers some queries. Including the file directly works just as well.
* Allow for multiple reports per commit for the same test bot.