1
0
Fork 0

Add tests docs to CI and fix docs warning (#238)

* Add tests docs to CI and fix docs warning

* Switch to storing environment variables in travis outside of secure vars.

* Force a rebuild.

* Force a rebuild.

* Run integration tests just once per test run.

* Minor updates.

* Nevermind; this test class covers more than just integration tests.

* Attempting to fix docs build via https://stackoverflow.com/questions/61711710/runtimeerror-class-not-set-defining-abstractbaseuser-as-class-django-co\#comment112739057_63045563

* Minor docs fix.

Co-authored-by: Adam Coddington <me@adamcoddington.net>
This commit is contained in:
Adam Dobrawy 2020-12-07 03:10:15 +01:00 committed by GitHub
parent 225da2155f
commit 5abc1981dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 27 additions and 23 deletions

View file

@ -40,7 +40,7 @@ master_doc = 'index'
# General information about the project.
project = 'django-mailbox'
copyright = '2014, Adam Coddington'
copyright = '2020, Adam Coddington'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@ -119,7 +119,7 @@ html_theme = 'default'
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
# html_static_path = ['_static']
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
@ -282,7 +282,7 @@ def process_docstring(app, what, name, obj, options, lines):
# Add the field's type to the docstring
if isinstance(field, models.ForeignKey):
to = field.rel.to
to = field.related_model
lines.append(':type {}: {} to :class:`~{}.{}`'.format(field.attname, type(field).__name__, to.__module__, to.__name__))
else:
lines.append(':type {}: {}'.format(field.attname, type(field).__name__))