-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added minimal example for similar names
- Loading branch information
1 parent
198b438
commit 644e415
Showing
6 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
output/ | ||
venv/ | ||
temp/ | ||
.rpa/ | ||
.idea/ | ||
.ipynb_checkpoints/ | ||
*/.ipynb_checkpoints/* | ||
.virtual_documents/ | ||
*/.virtual_documents/* | ||
.vscode | ||
.DS_Store | ||
*.pyc | ||
*.zip | ||
*/work-items-out/* | ||
testrun/* | ||
.~lock* | ||
*.pkl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Example: nested suites | ||
|
||
This minimal example can be used to demonstrate the ocurrence of multiple suite/test objects which have the same name, which are: | ||
|
||
* Suites: `Demo` (2x, from the file `demo.robot`) | ||
* Tests: `TestA`, `TestB`, `TextC` (2x, defined in `demo.robot`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# For more details on the format and content: | ||
# https://github.com/robocorp/rcc/blob/master/docs/recipes.md#what-is-in-condayaml | ||
# Tip: Adding a link to the release notes of the packages helps maintenance and security. | ||
|
||
channels: | ||
- conda-forge | ||
|
||
dependencies: | ||
- python=3.10.12 # https://pyreadiness.org/3.10 | ||
- pip=23.2.1 # https://pip.pypa.io/en/stable/news | ||
- truststore=0.7.0 # https://github.com/sethmlarson/truststore/blob/main/CHANGELOG.md | ||
- pip: | ||
- robotframework>=6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# For more details on the format and content: | ||
# https://github.com/robocorp/rcc/blob/master/docs/recipes.md#what-is-in-robotyaml | ||
|
||
tasks: | ||
# Task names here are used when executing the bots, renaming these is recommended. | ||
Run all tasks: | ||
shell: python -m robot --report NONE --outputdir output --logtitle "Task log" tasks.robot | ||
|
||
environmentConfigs: | ||
- environment_windows_amd64_freeze.yaml | ||
- environment_linux_amd64_freeze.yaml | ||
- environment_darwin_amd64_freeze.yaml | ||
- conda.yaml | ||
|
||
artifactsDir: output | ||
|
||
PATH: | ||
- . | ||
PYTHONPATH: | ||
- . | ||
ignoreFiles: | ||
- .gitignore |
9 changes: 9 additions & 0 deletions
9
v2/data/similar_names/suite_mainfolder/suite_folder1/demo.robot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*** Test Cases *** | ||
TestA | ||
Log This is TestA doing nothing. | ||
|
||
TestB | ||
Log This is TestB doing nothing. | ||
|
||
TestC | ||
Log This is TestC doing nothing. |
9 changes: 9 additions & 0 deletions
9
v2/data/similar_names/suite_mainfolder/suite_folder2/demo.robot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*** Test Cases *** | ||
TestA | ||
Log This is TestA doing nothing. | ||
|
||
TestB | ||
Log This is TestB doing nothing. | ||
|
||
TestC | ||
Log This is TestC doing nothing. |