• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

UiPath / uipathcli
90%
main: 91%

Build:
Build:
LAST BUILD BRANCH: feature/upgrade-openapi-specs
DEFAULT BRANCH: main
Repo Added 07 Oct 2023 02:25PM UTC
Files 132
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH feature/test-run-command
branch: feature/test-run-command
CHANGE BRANCH
x
Reset
  • feature/test-run-command
  • feature/add-package-documentation
  • feature/analyze-feed-auth
  • feature/api-package
  • feature/avoid-escape-equal-sign
  • feature/clear-command
  • feature/code-coverage
  • feature/collect-coverage-all-os
  • feature/command-builder
  • feature/command-builder-refactor
  • feature/command-errors
  • feature/config-command-tenant-list
  • feature/configurable-attempts-and-timeout
  • feature/configure-tenant-list
  • feature/content-length-input
  • feature/custom-headers-plugins
  • feature/custom-operation-name
  • feature/custom-operation-names
  • feature/dataservice
  • feature/digitize-command-default-project
  • feature/download-dotnet-core-runtime
  • feature/extend-plugin-parameters
  • feature/folder-name
  • feature/github-actions-upgrade
  • feature/go-1.24
  • feature/go1.22.2
  • feature/go122
  • feature/governance-file
  • feature/http-proxy-support
  • feature/identity-client
  • feature/identity-uri
  • feature/improve-command-documentation
  • feature/improve-config-set-command
  • feature/improve-studio-project-compatibility-error-message
  • feature/library-feed-auth
  • feature/login-confidential-app
  • feature/network-package
  • feature/orchestrator-v17
  • feature/pack-output-type-validation
  • feature/pat-documentation
  • feature/plugins-offline
  • feature/project-builder
  • feature/project-pack
  • feature/publish-create-release
  • feature/readme-example-generative-extractor
  • feature/readme-examples
  • feature/readme-pat
  • feature/refresh-token-support
  • feature/rename-service-version
  • feature/restore-command
  • feature/security-policy
  • feature/split-plugin-tests
  • feature/split-tests
  • feature/split-tests-and-commands
  • feature/static-linking
  • feature/studio
  • feature/studio-folder-name
  • feature/studio-optional-parameters
  • feature/studio-package-publish
  • feature/studio-publish
  • feature/studio-publish-command
  • feature/test-on-windows-macos
  • feature/test-parallel
  • feature/test-run-folder-id
  • feature/test-run-junit-robotlogs
  • feature/test-run-parallel
  • feature/test-run-readme
  • feature/test-sequence
  • feature/update-codeowners
  • feature/update-dependencies
  • feature/update-dependencies-12-2024
  • feature/update-deps-latest-minor
  • feature/update-examples
  • feature/update-latest-definitions-01-2024
  • feature/update-latest-definitions-08-2024
  • feature/update-latest-definitions-12-2024
  • feature/upgrade-dependencies-v2
  • feature/upgrade-deps
  • feature/upgrade-go-1.23
  • feature/upgrade-golangci-v2
  • feature/upgrade-openapi-specifications
  • feature/upgrade-openapi-specs
  • feature/uri-builder
  • feature/user-agent
  • feature/utils-split-up
  • feature/version-command
  • feature/version-flag
  • fix/library-auth-identity-url
  • fix/short-help-option
  • fix/show-example-usage-nested-object
  • fix/studio-package-progressbar
  • fix/uri-builder
  • fix/use-testdata-templates
  • main
  • refs/tags/plugins-v2.0.0
  • refs/tags/plugins.v2.0.0
  • refs/tags/plugins/v2.0.0
  • refs/tags/plugins_v2.0.0
  • refs/tags/v2.0.0-plugin
  • refs/tags/v2.0.0-uipcli

19 Mar 2025 09:08AM UTC coverage: 90.112% (-0.4%) from 90.483%
13942759579

Pull #165

github

thschmitt
Add run command to execute tests on UiPath Orchestrator

`uipath studio test run` packages the project in the given folder,
uploads the package and executes the tests through the connected
orchestrator instance.

The run command performs the following steps:
- Builds the given project with output type "Tests"
- Uploads the generated nupkg package to Orchestrator
- Gets the existing releases for the package
- The command will either update the release if it is already present,
  or generate a new one if it is not.
- Creates a test set based on the latest release
- Starts the execution of the test set
- Waits for the tests to finish

Implementation:

- Added new TestRunCommand `uipath studio test run` with two parameters:
  `--source .`: Path to UiPath Studio project
  `--timeout 3600`: Time to wait for tests to finish
- Extracted common logic for interacting with the Orchestrator API into
  `orchestratorClient` and using it from the publish and test run
  command
- Extended the progress bar to support showing progress based on the
  number of steps. This is used to display the total number of tests
  and how many have finished:
  `running...        |███                 | (1/6)`
- Extended the `nupkgReader` to parse the package id from the nuspec
  which is used to create the release
- Add `ExecuteAndWait` method to `uipcli`

Issue: https://github.com/UiPath/uipathcli/issues/158
Pull Request #165: Add run command to execute tests on UiPath Orchestrator

581 of 690 new or added lines in 17 files covered. (84.2%)

2 existing lines in 1 file now uncovered.

5860 of 6503 relevant lines covered (90.11%)

1.01 hits per line

Relevant lines Covered
Build:
Build:
6503 RELEVANT LINES 5860 COVERED LINES
1.01 HITS PER LINE
Source Files on feature/test-run-command
  • Tree
  • List 117
  • Changed 8
  • Source Changed 0
  • Coverage Changed 8
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
13942759579 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... Pull #165 19 Mar 2025 09:09AM UTC thschmitt github
90.11
13942753930 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 19 Mar 2025 09:09AM UTC thschmitt github
90.11
13942676761 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 19 Mar 2025 09:05AM UTC thschmitt github
90.14
13942629354 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 19 Mar 2025 09:03AM UTC thschmitt github
90.14
13925962350 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 18 Mar 2025 02:39PM UTC thschmitt github
90.14
13925647929 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 18 Mar 2025 02:25PM UTC thschmitt github
90.05
13903816541 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 17 Mar 2025 03:50PM UTC thschmitt github
89.42
13903757652 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 17 Mar 2025 03:47PM UTC thschmitt github
89.42
13903216833 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 17 Mar 2025 03:23PM UTC thschmitt github
89.3
13902910690 feature/test-run-command Add run command to execute tests on UiPath Orchestrator `uipath studio test run` packages the project in the given folder, uploads the package and executes the tests through the connected orchestrator instance. The run command performs the follo... push 17 Mar 2025 03:10PM UTC thschmitt github
89.3
See All Builds (323)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc