Skip to content

Commit

Permalink
Minor tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Mar 14, 2021
1 parent 95addc7 commit c8707c8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion doc-source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"sphinx_toolbox.more_autodoc",
"sphinx_toolbox.more_autosummary",
"sphinx_toolbox.tweaks.param_dash",
"sphinx_toolbox.tweaks.latex_toc",
"sphinx.ext.intersphinx",
"sphinx.ext.mathjax",
"sphinxcontrib.httpdomain",
Expand Down Expand Up @@ -136,3 +135,5 @@
"show-inheritance": None,
"exclude-members": ','.join(autodoc_exclude_members),
}

toctree_plus_types.add("fixture")
3 changes: 3 additions & 0 deletions repo_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ keywords:
- configuration

min_coverage: 85

sphinx_conf_epilogue:
- toctree_plus_types.add("fixture")
6 changes: 5 additions & 1 deletion repo_helper/files/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,11 @@ def tox(self):
self._ini["tox"]["skip_missing_interpreters"] = True
self._ini["tox"]["isolated_build"] = True

tox_requires = {"pip>=20.3.3", "tox-envlist>=0.2.1", "tox-pip-version>=0.0.7", *self["tox_requirements"]}
tox_requires = {"pip>=20.3.3", "tox-pip-version>=0.0.7", *self["tox_requirements"]}

if self["pypi_name"] != "tox-envlist":
tox_requires.add("tox-envlist>=0.2.1")

self._ini["tox"]["requires"] = indent_join(sorted(tox_requires))

def envlists(self):
Expand Down

0 comments on commit c8707c8

Please sign in to comment.