Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gemini-testing/hermione-teamcity-reporter

Testplane plugin to report results for TeamCity CI
https://github.com/gemini-testing/hermione-teamcity-reporter

teamcity teamcity-reporter testplane-plugin

Last synced: about 2 months ago
JSON representation

Testplane plugin to report results for TeamCity CI

Awesome Lists containing this project

README

        

# hermione-teamcity-reporter [![Build Status](https://travis-ci.org/gemini-testing/hermione-teamcity-reporter.svg?branch=master)](https://travis-ci.org/gemini-testing/hermione-teamcity-reporter)

[Hermione](https://github.com/gemini-testing/hermione) reporter for TeamCity CI.
Read more about `Hermione` plugins in the [documentation](https://github.com/gemini-testing/hermione#plugins).

## Install

```bash
$ npm install hermione-teamcity-reporter
```

## Usage

Add plugin to your configuration file:

```js
module.exports = {
plugins: {
'teamcity-reporter': true
}
};
```

Besides, you can switch on or switch off the plugin depending on the environment, for example, this way:

```js
module.exports = {
plugins: {
'teamcity-reporter': {
// plugin will be enabled only when hermione is run in TeamCity CI
enabled: Boolean(process.env.TEAMCITY_VERSION)
}
}
};
```