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
When working on code in this repo, it can be beneficial to run the same
tests that run as part of the CI workflow on GitHub.
This change makes it possible to run `tools/ci.sh` without it messing
with your user-wide micropython install (`~/.micropython/lib`). It now
defaults to creating a virtual environment in `/tmp/micropython-venv`.
Expected usage of this is:
```bash
# Setup tests (run once)
$ source tools/ci.sh
$ ci_package_tests_setup_micropython
# Run tests (run many times)
$ ci_package_tests_setup_lib && ci_package_tests_run || echo 'Failed'
```
Signed-off-by: Greg Darke <micropython@me.tsukasa.au>
0 commit comments