cloak/robo-coveralls-kit

This package is abandoned and no longer maintained. No replacement package was suggested.

Robo task for coveralls-kit

Maintainers

👁 holyshared

Package info

github.com/cloak-php/robo-coveralls-kit

pkg:composer/cloak/robo-coveralls-kit

Statistics

Installs: 2 707

Dependents: 14

Suggesters: 0

Stars: 0

Open Issues: 1

2.1.4 2015-12-05 09:16 UTC

MIT 31049d4f455cc6758654690fa242b7072ca66d90

  • holyshared <holy.shared.design.woop@gmail.com>

taskcoverallsrobocoveralls-kit

This package is auto-updated.

Last update: 2023-09-15 13:20:18 UTC


README

robo-coveralls-kit is a library to send the report to the coveralls.
Installation of Robo PHP Task Runner will be mandatory to use it.

👁 Latest Stable Version
👁 Latest Unstable Version
👁 Build Status
👁 HHVM Status
👁 Coverage Status
👁 Dependency Status

Basic Usage

Specify the configuration file, you can send the file the report just run.
For more information about the configuration file, please refer to the coveralls-kit.

class RoboFile extends Tasks
{
	use \coverallskit\robo\loadTasks;

	public function coverallsUpload()
	{
		$result = $this->taskCoverallsKit()
			->configureBy('coveralls.toml')
			->run();

		return $result;
	}
}

Output only the report file

Only to output the report to confirm you can use the saveOnly method.
Just generate a report file, but does not upload.

public function coverallsTest()
{
	$result = $this->taskCoverallsKit()
		->configureBy('coveralls.toml')
		->saveOnly()
		->run();

	return $result;
}

Testing robo-coveralls-kit

Please try the following command.

composer install
composer test