We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaacd74 commit ef91703Copy full SHA for ef91703
.github/workflows/test.yml
@@ -36,11 +36,13 @@ jobs:
36
uv run -- coverage report -m
37
38
- name: Run example notebooks
39
- run: uv run -- jupyter execute examples/**/*.ipynb
+ run: |
40
+ uv run -- coverage run --branch --source=nemo_run -m jupyter execute examples/**/*.ipynb
41
42
- name: Run example scripts
43
run: |
- cd examples/hello-world && uv run -- python hello_scripts.py
44
+ cd examples/hello-world
45
+ uv run -- coverage run --branch --source=nemo_run -m python hello_scripts.py
46
47
- name: Generate report
48
0 commit comments