-
Notifications
You must be signed in to change notification settings - Fork 361
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add initial files for GitHub User Finder js example project * chore: Rename package.json and update project name to js-vanilla-example * chore: Update project name to js-vanilla-example * s1 * s1 * s1 * Added Makefile for simpler operations and incremented version. * Cleaned up CI script with Makefile. * Initial boiler plate commit of basic integration test. * s1 * s1 * s1 * s1 * prompts * Updated workflow to account for makefile release. --------- Co-authored-by: Omri Grossman <[email protected]> Co-authored-by: Embedded DevOps <[email protected]>
- Loading branch information
1 parent
3b09281
commit 252a89c
Showing
22 changed files
with
615 additions
and
240 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Makefile | ||
|
||
.PHONY: test build installer | ||
|
||
test: | ||
poetry run pytest --junitxml=testLog.xml --cov=cover_agent --cov-report=xml:cobertura.xml --cov-report=term --cov-fail-under=70 --log-cli-level=INFO | ||
|
||
build: | ||
poetry build | ||
|
||
installer: | ||
poetry run pyinstaller --add-data "cover_agent/version.txt:." --add-data "cover_agent/settings/language_extensions.toml:." --add-data "cover_agent/settings/test_generation_prompt.toml:." --hidden-import=tiktoken_ext.openai_public --hidden-import=tiktoken_ext --onefile --name cover-agent cover_agent/main.py |
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.