Skip to content

Commit 4c93b0b

Browse files
revert more files
1 parent 8463309 commit 4c93b0b

File tree

5 files changed

+14
-517
lines changed

5 files changed

+14
-517
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ yarn-error.log*
3131

3232
# env files (can opt-in for committing if needed)
3333
.env*
34-
!.env.example
3534

3635
# vercel
3736
.vercel
@@ -98,4 +97,4 @@ dmypy.json
9897
scripts/
9998

10099
# Logs
101-
*.log
100+
*.log

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ cd stagehand-python
9494

9595
# Install in editable mode with development dependencies
9696
pip install -e ".[dev]"
97-
98-
### INSTRUCTION TO BE REMOVED BEFORE RELEASE
99-
# install google cua
100-
pip install temp/path-to-the-cua-wheel.wheel
10197
```
10298

10399
## Requirements

pytest.ini

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[pytest]
2+
testpaths = tests
3+
python_files = test_*.py
4+
python_classes = Test*
5+
python_functions = test_*
6+
asyncio_mode = auto
7+
8+
markers =
9+
unit: marks tests as unit tests
10+
integration: marks tests as integration tests
11+
12+
log_cli = true
13+
log_cli_level = INFO

stagehand/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -856,7 +856,6 @@ def transform_model(model_cls, path=[]): # noqa: F841 B006
856856
Returns:
857857
Tuple of (transformed_model_cls, url_paths)
858858
"""
859-
860859
# Get model fields based on Pydantic version
861860
try:
862861
# Pydantic V2 approach

0 commit comments

Comments
 (0)