Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop gemini support #27

Merged
merged 1 commit into from
Jan 17, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
21 changes: 1 addition & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@

Common plugin for:

* [gemini](https://github.com/gemini-testing/gemini)
* [hermione](https://github.com/gemini-testing/hermione)

which is intended to aggregate the results of tests running.

You can read more about gemini plugins [here](https://github.com/gemini-testing/gemini/blob/master/doc/plugins.md)
and hermione plugins [here](https://github.com/gemini-testing/hermione#plugins).
You can read more about hermione plugins [here](https://github.com/gemini-testing/hermione#plugins).

## Installation

Expand All @@ -29,23 +27,6 @@ Plugin has following configuration:
Also there is ability to override plugin parameters by CLI options or environment variables
(see [configparser](https://github.com/gemini-testing/configparser)).

### Gemini usage

Add plugin to your `gemini` config file:

```js
module.exports = {
// ...
plugins: {
'json-reporter/gemini': {
enabled: true,
path: 'my/custom/report.json'
}
},
//...
}
```

### Hermione usage

Add plugin to your `hermione` config file:
Expand Down
29 changes: 0 additions & 29 deletions gemini.js

This file was deleted.

28 changes: 0 additions & 28 deletions lib/collector/data-collector/gemini.js

This file was deleted.

34 changes: 0 additions & 34 deletions lib/collector/gemini.js

This file was deleted.

23 changes: 0 additions & 23 deletions lib/collector/tool/gemini.js

This file was deleted.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "json-reporter",
"version": "2.2.0",
"description": "Common plugin for gemini and hermione which is intended to aggregate the results of tests running",
"main": "gemini.js",
"main": "hermione.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test-unit",
Expand All @@ -19,10 +19,9 @@
"url": "https://github.com/gemini-testing/json-reporter/issues"
},
"engines": {
"node": ">= 6"
"node": ">= 18"
},
"keywords": [
"gemini",
"hermione",
"plugin",
"json-reporter"
Expand Down
145 changes: 0 additions & 145 deletions test/gemini.js

This file was deleted.

29 changes: 0 additions & 29 deletions test/lib/collector/data-collector/gemini.js

This file was deleted.

Loading