@testream/dotnet-reporter 0.5.5 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,12 +2,25 @@
2
2
 
3
3
  Run .NET tests and send the results from your codebase to Jira via Testream.
4
4
 
5
- ## Quick Start
5
+ ## CI Example (GitHub Actions)
6
6
 
7
- ```bash
8
- npx @testream/dotnet-reporter -k $TESTREAM_API_KEY
7
+ ```yaml
8
+ - uses: actions/setup-dotnet@v4
9
+ with:
10
+ dotnet-version: '8.0.x'
11
+
12
+ - uses: actions/setup-node@v4
13
+ with:
14
+ node-version: '20'
15
+
16
+ - run: npm install -g @testream/dotnet-reporter
17
+
18
+ - run: |
19
+ testream-dotnet \
20
+ --api-key "${{ secrets.TESTREAM_API_KEY }}" \
21
+ --fail-on-error
9
22
  ```
10
23
 
11
- This command runs your tests and uploads the results so they show up in Jira.
24
+ This installs the reporter, runs your .NET tests, and uploads results to Testream.
12
25
 
13
26
  For CLI options and CI examples, see https://testream.github.io/docs/reporters/dotnet.
@@ -0,0 +1,15 @@
1
+ # Third-Party Notices
2
+
3
+ ## fast-xml-parser
4
+
5
+ - Package: `fast-xml-parser`
6
+ - Repository: https://github.com/NaturalIntelligence/fast-xml-parser
7
+ - License: MIT
8
+ - License URL: https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/LICENSE
9
+
10
+ ## glob
11
+
12
+ - Package: `glob`
13
+ - Repository: https://github.com/isaacs/node-glob
14
+ - License: BlueOak-1.0.0
15
+ - License URL: https://github.com/isaacs/node-glob/blob/main/LICENSE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testream/dotnet-reporter",
3
- "version": "0.5.5",
3
+ "version": "1.0.0",
4
4
  "description": "CLI to upload .NET test results (xUnit, NUnit, MSTest) to Testream",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,7 +37,8 @@
37
37
  "files": [
38
38
  "dist",
39
39
  "README.md",
40
- "LICENSE"
40
+ "LICENSE",
41
+ "THIRD_PARTY_NOTICES.md"
41
42
  ],
42
43
  "dependencies": {
43
44
  "fast-xml-parser": "^4.5.0",