定制 cloak/robo-coveralls-kit 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

cloak/robo-coveralls-kit

最新稳定版本:2.1.4

Composer 安装命令:

composer require cloak/robo-coveralls-kit

包简介

Robo task for coveralls-kit

README 文档

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

统计信息

  • 总下载量: 2.71k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 14
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-30