Skip to content

Commit 009ec83

Browse files
ci-5366: remove testing add-on references (#246)
* ci-5366: remove testing add-on references * ci-5366: update README.md
1 parent d91d787 commit 009ec83

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
[![Step changelog](https://shields.io/github/v/release/bitrise-steplib/steps-deploy-to-bitrise-io?include_prereleases&label=changelog&color=blueviolet)](https://github.com/bitrise-steplib/steps-deploy-to-bitrise-io/releases)
44

55
Deploys build artifacts to make them available for the user on the build's **Artifacts** tab.
6-
Sends test results to the Test Reports add-on (build's **Tests** tab).
6+
Sends test results to the Test Reports (build's **Tests** tab).
77
Uploads Pipeline intermediate files to make them available in subsequent Workflows and also uploads Bitrise and user generated html reports.
88

99
<details>
1010
<summary>Description</summary>
1111

1212
The Step accesses artifacts from a directory specified as the `$BITRISE_DEPLOY_DIR` where artifacts generated by previous Steps gets stored.
1313
These artifacts are then uploaded on the **Artifacts** tab of any given build. For installable artifacts, such as IPAs or APKs, the Step can create a public install page that allows testers to install the app on their devices.
14-
You can also use the Step to notify users about the build. If you wish to use the Test Reports add-on, you must add this Step in your Workflow since the Step converts test results to the right format and sends them to the add-on.
14+
You can also use the Step to notify users about the build. If you wish to use the Test Reports, you must add this Step in your Workflow since the Step converts test results to the right format and sends them.
1515
The Step can also share Pipeline intermediate files. These files are generated by Workflows in a Pipeline intended to be shared with subsequent Workflows.
1616
Also it collects and uploads all of the html reports located in the `BITRISE_HTML_REPORT_DIR` folder.
1717

@@ -77,7 +77,7 @@ Bundletool generates an APK from an Android App Bundle so that you can test the
7777

7878
## 🧩 Get started
7979

80-
Add this step directly to your workflow in the [Bitrise Workflow Editor](https://devcenter.bitrise.io/steps-and-workflows/steps-and-workflows-index/).
80+
Add this step directly to your workflow in the [Bitrise Workflow Editor](https://docs.bitrise.io/en/bitrise-ci/workflows-and-pipelines/steps/adding-steps-to-a-workflow.html).
8181

8282
You can also run this step directly with [Bitrise CLI](https://github.com/bitrise-io/bitrise).
8383

@@ -163,9 +163,8 @@ This metadata will be saved with the individual files and restored by the [Pull
163163

164164
We welcome [pull requests](https://github.com/bitrise-steplib/steps-deploy-to-bitrise-io/pulls) and [issues](https://github.com/bitrise-steplib/steps-deploy-to-bitrise-io/issues) against this repository.
165165

166-
For pull requests, work on your changes in a forked repository and use the Bitrise CLI to [run step tests locally](https://devcenter.bitrise.io/bitrise-cli/run-your-first-build/).
166+
For pull requests, work on your changes in a forked repository and use the Bitrise CLI to [run step tests locally](https://docs.bitrise.io/en/bitrise-ci/bitrise-cli/running-your-first-local-build-with-the-cli.html).
167167

168168
Learn more about developing steps:
169169

170-
- [Create your own step](https://devcenter.bitrise.io/contributors/create-your-own-step/)
171-
- [Testing your Step](https://devcenter.bitrise.io/contributors/testing-and-versioning-your-steps/)
170+
- [Create your own step](https://docs.bitrise.io/en/bitrise-ci/workflows-and-pipelines/developing-your-own-bitrise-step/developing-a-new-step.html)

step.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
title: Deploy to Bitrise.io - Build Artifacts, Test Reports, and Pipeline intermediate files
22
summary: |-
33
Deploys build artifacts to make them available for the user on the build's **Artifacts** tab.
4-
Sends test results to the Test Reports add-on (build's **Tests** tab).
4+
Sends test results to the Test Reports (build's **Tests** tab).
55
Uploads Pipeline intermediate files to make them available in subsequent Workflows and also uploads Bitrise and user generated html reports.
66
description: |-
77
The Step accesses artifacts from a directory specified as the `$BITRISE_DEPLOY_DIR` where artifacts generated by previous Steps gets stored.
88
These artifacts are then uploaded on the **Artifacts** tab of any given build. For installable artifacts, such as IPAs or APKs, the Step can create a public install page that allows testers to install the app on their devices.
9-
You can also use the Step to notify users about the build. If you wish to use the Test Reports add-on, you must add this Step in your Workflow since the Step converts test results to the right format and sends them to the add-on.
9+
You can also use the Step to notify users about the build. If you wish to use the Test Reports, you must add this Step in your Workflow since the Step converts test results to the right format and sends them.
1010
The Step can also share Pipeline intermediate files. These files are generated by Workflows in a Pipeline intended to be shared with subsequent Workflows.
1111
Also it collects and uploads all of the html reports located in the `BITRISE_HTML_REPORT_DIR` folder.
1212
@@ -261,7 +261,7 @@ inputs:
261261
```
262262
- addon_api_base_url: https://vdt.bitrise.io/test
263263
opts:
264-
category: Test Reports Addon
264+
category: Test Reports
265265
title: Test API's base URL
266266
summary: The URL where test API is accessible.
267267
description: |
@@ -270,7 +270,7 @@ inputs:
270270
is_dont_change_value: true
271271
- addon_api_token: $ADDON_VDTESTING_API_TOKEN
272272
opts:
273-
category: Test Reports Addon
273+
category: Test Reports
274274
title: API Token
275275
summary: The token required to authenticate with the API.
276276
description: |

test/converters/junitxml/junitxml.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func parseTestReport(result resultReader) (TestReport, error) {
6060
// merges Suites->Cases->Error and Suites->Cases->SystemErr field values into Suites->Cases->Failure field
6161
// with 2 newlines and error category prefix
6262
// the two newlines applied only if there is a failure message already
63-
// this is required because our testing addon currently handles failure field properly
63+
// this is required because our testing service currently handles failure field properly
6464
func convertTestReport(report TestReport) testreport.TestReport {
6565
convertedReport := testreport.TestReport{
6666
XMLName: report.XMLName,

0 commit comments

Comments
 (0)