Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gemini-testing/hermione-teamcity-reporter
- Owner: gemini-testing
- License: mit
- Created: 2016-07-27T09:05:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-02T12:10:22.000Z (over 1 year ago)
- Last Synced: 2024-11-08T17:05:25.378Z (2 months ago)
- Topics: teamcity, teamcity-reporter, testplane-plugin
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 5
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
}
}
};
```