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.
115115## Help
116116The ` py.test ` system help can be obtained with ` py.test -h ` , which will
117117show 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.
120120
121121
122122## Acknowledgements
Original file line number Diff line number Diff line change @@ -65,9 +65,10 @@ def pytest_addoption(parser):
6565
6666 This is called by the pytest API
6767 """
68- group = parser .getgroup ("general" )
68+ group = parser .getgroup ("nbval" , "Jupyter Notebook validation" )
69+
6970 group .addoption ('--nbval' , action = 'store_true' ,
70- help = "Validate Jupyter notebooks" )
71+ help = "Run Jupyter notebooks, validating all output " )
7172
7273 group .addoption ('--nbval-lax' , action = 'store_true' ,
7374 help = "Run Jupyter notebooks, only validating output on "
You can’t perform that action at this time.
0 commit comments