- Restart your Docker container to a new pull state:
docker ps
to see all running docker imagesdocker restart < selected docker image >
-
In terminal, navigate to the folder containing your target notebook
-
Fill in
notebook name
and run this command-bash /rapids/utils/nbtest.sh <notebook name>
-
If it returns
EXIT CODE 0
, you're good to PR!
If it returnsEXIT CODE 1
, please fix the issues found.
Please note:
- This test just ensures that the notebook will execute. This does NOT ensure that your notebooks output are what you believe they should be. Adding print statements will help you diagnose those types of issue.
- This test does not work with magic functions, like (functions starting with
%
). Please don't let your notebook's progression depend on these - Our notebook tests aren't compatible with Dask based notebooks at this time