...

/

Commands for Testing: Documentation

Commands for Testing: Documentation

Learn how to update the documentation if any doc strings have been updated.

Documentation

Before moving on, let’s consider the documentation. ​​If any of the doc strings have been altered, it would be good to update the documentation.

pre-commit script

If we want, we can add the following lines in pre-commit to compile the documentation.

$ cd flask-examples/docs
$ make html
$ cd ..

This ...