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.
2 parents 650227b + 2302123 commit a71290dCopy full SHA for a71290d
pixi.toml
@@ -46,6 +46,7 @@ myst-nb = ">=1.1"
46
jupytext = ">=1.16"
47
sphinx-book-theme = ">=1.1"
48
sphinx-copybutton = ">=0.5"
49
+pytest-custom_exit_code = "*"
50
51
[feature.py312.dependencies]
52
python = "3.12.*"
test.sh
@@ -29,6 +29,12 @@ done
29
30
pytest --nbval-lax -vv --suppress-no-test-exit-code --durations=10
31
32
+_exitval="$?"
33
+
34
+if [ $_exitval > 0 ]; then
35
+ exit $_exitval
36
+fi
37
38
# Clean up ipynb files that were converted. Any stray ipynb files that were
39
# _not_ the result of conversion from Markdown will be left alone.
40
for file in "${notebook_files[@]}"; do
0 commit comments