This repository contains the user documentation of the Fortuno unit testing framework. Its content is rendered at the Fortuno documentation site.
Fortuno documentation is licensed under the Creative Common Attribution 4.0 International (CC BY 4.0) license.
To build the documentation locally, follow these steps:
Create and activate a Python virtual environment:
$ python3 -m venv venv $ source venv/bin/activate
Install the required dependencies (sphinx):
$ pip install -r docs/requirements.txtBuild the documentation using the Makefile in the
docsdirectory:$ cd docs $ make html
View the generated documentation in your browser:
Simply open the generated html located at
docs/_build/html/index.html.