Skip to content

Commit 41ed62e

Browse files
committed
feat(tests): add uipath dev testcase
1 parent 543fb48 commit 41ed62e

15 files changed

Lines changed: 1188 additions & 145 deletions

File tree

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: actions/checkout@v4
2222

2323
- name: Discover testcases
24+
# Skip common directory - it's shared utilities, not a testcase
2425
id: discover
2526
run: |
2627
# Find all testcase folders (excluding common folders like README, etc.)

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,5 +180,6 @@ cython_debug/
180180
**/__uipath/
181181
**/.langgraph_api
182182
**/testcases/**/uipath.json
183-
184-
/playground.py
183+
184+
/playground.py
185+
/.claude/settings.local.json

testcases/common/__init__.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""Common testing utilities for UiPath testcases."""
2+
3+
from testcases.common.console import (
4+
ConsoleTest,
5+
PromptTest,
6+
strip_ansi,
7+
read_log,
8+
)
9+
10+
__all__ = [
11+
"ConsoleTest",
12+
"PromptTest",
13+
"strip_ansi",
14+
"read_log",
15+
]

0 commit comments

Comments
 (0)