You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit refactors the existing `e2e_test.sh` script, making it more
generic, modular.
Key updates include:
- Replaces the use of environment variables with command line arguments
for better clarity and flexiability.
```
💡 Examples:
# Run test with estimator
e2e_test.sh --estimator
# Run test with model server
e2e_test.sh --server
# Run test with dummy weight model or power request
e2e_test.sh --test
# Enable model database
e2e_test.sh --db
# Run test with both estimator and server
e2e_test.sh --estimator --server
# Run test with estimator, server, and model database
e2e_test.sh --estimator --server --db
```
- Test logs and other useful information are now stored in the `tmp/e2e` directory for better organization and accessibility.
- Adds a `utils.bash` file to store common utility functions
- Updates existing GH workflows to align with the refactored script and
adds a new step to upload test artifacts for easier debugging in case
of failures.
- Updates the `README.md` file
Signed-off-by: vprashar2929 <[email protected]>
0 commit comments