-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: clean up spec.test.ts to prepare for translation to Go and …
…Python; other minor fixes to test CI (#78) CHANGELOG: - [ ] Refactor test harness to prepare for translation to Go and Python. - [ ] Update hooks to run all tests - [ ] Configure CI and hooks to fail on failing tests since the team finds that comfortable and will translate bottom up. - [ ] Clean up tests to reflect that. - [ ] Fix some lint in dir.test.ts and adapters.ts - [ ] Add some convenience scripts to the root package.json file. - [ ] Update pnpm to 10.2.0 to stay at the same version as Genkit. - [ ] Add a Role enum type for the role. - [ ] Add docstrings to more types in typing.py - [ ] Configure ruff to clean up unused imports and variables.
- Loading branch information
Showing
17 changed files
with
297 additions
and
146 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
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
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
{ | ||
"packageManager": "pnpm@9.13.2+sha256.ccce81bf7498c5f0f80e31749c1f8f03baba99d168f64590fc7e13fad3ea1938", | ||
"packageManager": "pnpm@10.2.0", | ||
"scripts": { | ||
"build": "pnpm -C js build", | ||
"format": "pnpm dlx @biomejs/biome check --formatter-enabled=true --linter-enabled=false --organize-imports-enabled=true --fix . && scripts/add_license", | ||
"format:check": "pnpm dlx @biomejs/biome ci --linter-enabled=false --formatter-enabled=true --organize-imports-enabled=false . && scripts/check_license", | ||
"lint": "pnpm dlx @biomejs/biome lint --fix . && scripts/add_license" | ||
"lint": "pnpm dlx @biomejs/biome lint --fix . && scripts/add_license", | ||
"test": "pnpm -C js run test" | ||
} | ||
} |
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
Oops, something went wrong.