From 8aea1e3e2f07b7db28b27135c8d4dcfa67fe5252 Mon Sep 17 00:00:00 2001 From: Joel Lefkowitz Date: Tue, 15 Oct 2024 17:12:31 +0100 Subject: [PATCH] Remove twine-check and ignore some flake8 errors --- docs/conf.py | 1 - tox.ini | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 9e1259a0..43cc3545 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -82,7 +82,6 @@ # html_theme = 'default' html_theme = "sphinx_rtd_theme" -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/tox.ini b/tox.ini index 60b0dee8..36bc68cd 100644 --- a/tox.ini +++ b/tox.ini @@ -59,13 +59,12 @@ skip_install = true deps = -r requirements/lint.txt commands = - flake8 src/drf_yasg testproj tests setup.py + flake8 src/drf_yasg testproj tests setup.py --ignore=E7,W,F4 [testenv:py38-docs] deps = -r requirements/docs.txt commands = - twine check .tox/dist/* sphinx-build -WnEa -b html docs docs/_build/html [pytest]