Skip to content
Merged
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
802b387
update readme
filip-michalsky Jun 2, 2025
76c5a1c
update env example
filip-michalsky Jun 2, 2025
f0d15cf
update
filip-michalsky Jun 2, 2025
9e82aba
update to pip
filip-michalsky Jun 3, 2025
89164ee
update examples and README
filip-michalsky Jun 3, 2025
33ef876
do not require bb key for local runs
filip-michalsky Jun 3, 2025
37d5510
update example
filip-michalsky Jun 3, 2025
8ca7751
format
filip-michalsky Jun 3, 2025
93a9011
formatting
filip-michalsky Jun 3, 2025
81032b2
Merge branch 'main' into fm/stg-468-update-readme-and-example
filip-michalsky Jun 3, 2025
0ffca19
merge commit
filip-michalsky Jun 3, 2025
a8fe211
format;
filip-michalsky Jun 3, 2025
9ee8096
remove saving the tree
filip-michalsky Jun 4, 2025
957dbeb
one shot test structure
filip-michalsky Jun 4, 2025
503876a
fixing tests
filip-michalsky Jun 4, 2025
fa68005
fixing more tests
filip-michalsky Jun 5, 2025
ba4ffcd
fix more tests
filip-michalsky Jun 5, 2025
b37bba1
update tests
filip-michalsky Jun 5, 2025
20605bb
fixing tests
filip-michalsky Jun 5, 2025
324277e
all tests pass
filip-michalsky Jun 5, 2025
ba317a4
accept deps from miguel
filip-michalsky Jun 5, 2025
3392d57
remove warnings
filip-michalsky Jun 5, 2025
cc9fd0f
fix formatting
filip-michalsky Jun 5, 2025
e3ebdac
fix: update deprecated GitHub Actions upload/download-artifact from v…
filip-michalsky Jun 6, 2025
1e8c7c8
Merge branch 'main' into fm/stg-474-more-tests
filip-michalsky Jun 6, 2025
f729c5c
make google cua optional import, fix stagehand import
filip-michalsky Jun 6, 2025
7421e4a
update tests
filip-michalsky Jun 6, 2025
7f4b7e4
format
filip-michalsky Jun 6, 2025
3d1b604
update cua to CI
filip-michalsky Jun 6, 2025
6637c77
fix linter
filip-michalsky Jun 6, 2025
69117de
remove min coverage threshold
filip-michalsky Jun 6, 2025
baae62b
run tests in CI attempt
filip-michalsky Jun 6, 2025
76c4356
remove tests from ruff
filip-michalsky Jun 6, 2025
ae1ac0b
more debug to pass ci
filip-michalsky Jun 6, 2025
8ed42e9
more ci fixes
filip-michalsky Jun 6, 2025
4475f7e
cleaning up some unit tests
miguelg719 Jun 6, 2025
ae11459
remove stuff from publish yaml
filip-michalsky Jun 6, 2025
907d542
revert
filip-michalsky Jun 6, 2025
227badf
fix test
filip-michalsky Jun 7, 2025
9a4cdd5
revert types back from schema
filip-michalsky Jun 7, 2025
0471b55
add note todo
filip-michalsky Jun 7, 2025
6a7c449
select tests based on PR labels
filip-michalsky Jun 7, 2025
af9e033
first pass on integration tests
filip-michalsky Jun 7, 2025
503d64e
updates to integration tests
filip-michalsky Jun 7, 2025
470938a
fix unit tests
filip-michalsky Jun 7, 2025
b3ea794
revert pr template, extract handler, remove test readme
filip-michalsky Jun 8, 2025
7e0cf6f
reverting more files except test folder
filip-michalsky Jun 8, 2025
8463309
revert more files
filip-michalsky Jun 8, 2025
4c93b0b
revert more files
filip-michalsky Jun 8, 2025
afdb3c1
revert examples
filip-michalsky Jun 8, 2025
574c12c
revert example
filip-michalsky Jun 8, 2025
1b9159d
trim unit tests
filip-michalsky Jun 8, 2025
e069d0f
trim tests
filip-michalsky Jun 8, 2025
3636016
fix unit test
filip-michalsky Jun 8, 2025
86005ca
fix smoke test warnings
filip-michalsky Jun 8, 2025
5dca7e8
update tests
filip-michalsky Jun 8, 2025
0e21f24
update test CI workflow
filip-michalsky Jun 8, 2025
a0cebee
updates
filip-michalsky Jun 8, 2025
291afe9
update core integration test
filip-michalsky Jun 9, 2025
50a7cfe
change local integration test
filip-michalsky Jun 9, 2025
d5b37cb
ci passing
filip-michalsky Jun 9, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.example → .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
MODEL_API_KEY = "anthropic-or-openai-api-key"
MODEL_API_KEY = "your-favorite-llm-api-key"
BROWSERBASE_API_KEY = "browserbase-api-key"
BROWSERBASE_PROJECT_ID = "browserbase-project-id"
STAGEHAND_API_URL = "api_url"
STAGEHAND_ENV= "LOCAL or BROWSERBASE"
17 changes: 17 additions & 0 deletions .github/pull_request_template
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,20 @@
# what changed

# test plan

---

## 🧪 Test Execution

By default, **unit tests**, **integration tests**, and **smoke tests** run on all PRs.

For additional testing, add one or more of these labels to your PR:

- `test-browserbase` - Run Browserbase integration tests (requires API credentials)
- `test-performance` - Run performance and load tests
- `test-llm` - Run LLM integration tests (requires API keys)
- `test-e2e` - Run end-to-end workflow tests
- `test-slow` - Run all slow-marked tests
- `test-all` - Run the complete test suite (use sparingly)

**Note**: Label-triggered tests only run when the labels are applied to the PR, not on individual commits.
Loading
Loading