Setup

Setting up developer environment

autodoc_pydantic uses poetry for environment and package management.

Cloning repository

git clone https://github.com/mansenfranzen/autodoc_pydantic.git
cd autodoc_pydantic

Creating environment

poetry install -E dev

Running & writing tests

pytest

To quickly execute the test suite within your current developer environment with pytest, run poetry run pytest.

tox

For more sophisticated testing, you can use tox for different test environments. A test environment is characterized by varying versions of autodoc_pydantic’s dependencies like pydantic, sphinx and sphinx-tabs:

  • Test a specific environment: poetry run tox -e py38-pydantic17-sphinx34

  • Test the latest stable versions from pypi: poetry run tox -e latest

  • Test the current developer versions from git repositories: poetry run tox -e development

  • Test all available environments: poetry run tox (not recommended)

Please visit the tox.ini for all available test environments.

Note

Using tox has the benefit of completing the entire build-deploy-test-cycle:

  1. build source distribution from pyproject.toml

  2. create specified virtual environment for test execution

  3. install source distribution in virtual environment

  4. run tests within virtual environment via pytest

  5. provide test coverage report

Building & writing docs

autodoc_pydantic’s documentation is generated with sphinx. To generate the HTML documentation, please use the following:

poetry shell
cd docs
make clean && make html

The generated documentation can be found under docs/build/html/index.html.