File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -115,8 +115,8 @@ notebook are run on the same kernel.
115
115
## Help
116
116
The ` py.test ` system help can be obtained with ` py.test -h ` , which will
117
117
show all the flags that can be passed to the command, such as the
118
- verbose ` -v ` option. The IPython notebook plugin can be found under the
119
- ` general ` section.
118
+ verbose ` -v ` option. Nbval's options can be found under the
119
+ ` Jupyter Notebook validation ` section.
120
120
121
121
122
122
## Acknowledgements
Original file line number Diff line number Diff line change @@ -65,9 +65,10 @@ def pytest_addoption(parser):
65
65
66
66
This is called by the pytest API
67
67
"""
68
- group = parser .getgroup ("general" )
68
+ group = parser .getgroup ("nbval" , "Jupyter Notebook validation" )
69
+
69
70
group .addoption ('--nbval' , action = 'store_true' ,
70
- help = "Validate Jupyter notebooks" )
71
+ help = "Run Jupyter notebooks, validating all output " )
71
72
72
73
group .addoption ('--nbval-lax' , action = 'store_true' ,
73
74
help = "Run Jupyter notebooks, only validating output on "
You can’t perform that action at this time.
0 commit comments