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 d71367a commit 57b17a6Copy full SHA for 57b17a6
2 files changed
.gitignore
@@ -63,3 +63,6 @@ node_modules/
63
64
# Jupyter assets
65
.ipynb_checkpoints
66
+
67
+# nbconvert tests
68
+examples/*.nbconvert.ipynb
pixi.toml
@@ -41,6 +41,16 @@ cmd = "R CMD INSTALL ."
41
cmd = "jupyter"
42
env = { R_PROFILE_USER = "$PIXI_PROJECT_ROOT/dev/.Rprofile" }
43
44
+[feature.dev.tasks.test-example]
45
+cmd = """
46
+jupyter nbconvert \
47
+ --to notebook \
48
+ --execute \
49
+ --ExecutePreprocessor.store_widget_state=False \
50
+ examples/widgets.ipynb
51
+"""
52
+env = { R_PROFILE_USER = "$PIXI_PROJECT_ROOT/dev/.Rprofile" }
53
54
[feature.dev.tasks]
55
# Document
56
doc = "rm -rf man/ && Rscript -e 'devtools::document()'"
0 commit comments