Skip to content

Commit b5448b9

Browse files
committed
feat: drop gemini support
BREAKING CHANGE: - remove gemini support - drop nodejs version less than 14
1 parent b6b882a commit b5448b9

File tree

11 files changed

+4
-587
lines changed

11 files changed

+4
-587
lines changed

‎.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x, 16.x, 18.x]
16+
node-version: [18.x, 20.x]
1717

1818
steps:
1919
- uses: actions/checkout@v3

‎README.md

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55

66
Common plugin for:
77

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

1110
which is intended to aggregate the results of tests running.
1211

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

1614
## Installation
1715

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

32-
### Gemini usage
33-
34-
Add plugin to your `gemini` config file:
35-
36-
```js
37-
module.exports = {
38-
// ...
39-
plugins: {
40-
'json-reporter/gemini': {
41-
enabled: true,
42-
path: 'my/custom/report.json'
43-
}
44-
},
45-
//...
46-
}
47-
```
48-
4930
### Hermione usage
5031

5132
Add plugin to your `hermione` config file:

‎gemini.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

‎lib/collector/data-collector/gemini.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

‎lib/collector/gemini.js

Lines changed: 0 additions & 34 deletions
This file was deleted.

‎lib/collector/tool/gemini.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

‎package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "json-reporter",
33
"version": "2.2.0",
44
"description": "Common plugin for gemini and hermione which is intended to aggregate the results of tests running",
5-
"main": "gemini.js",
5+
"main": "hermione.js",
66
"scripts": {
77
"lint": "eslint .",
88
"test": "npm run lint && npm run test-unit",
@@ -19,10 +19,9 @@
1919
"url": "https://github.com/gemini-testing/json-reporter/issues"
2020
},
2121
"engines": {
22-
"node": ">= 6"
22+
"node": ">= 18"
2323
},
2424
"keywords": [
25-
"gemini",
2625
"hermione",
2726
"plugin",
2827
"json-reporter"

‎test/gemini.js

Lines changed: 0 additions & 145 deletions
This file was deleted.

‎test/lib/collector/data-collector/gemini.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)