diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 42e3369..a464963 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,25 +3,7 @@ name: Python package on: [push] jobs: - lint: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Setup Python - uses: actions/setup-python@v2 - with: - python-version: 3.9 - - - name: Install tox and any other packages - run: pip install tox - - - name: Check for lint - run: tox -e lint - build: - needs: lint runs-on: ${{ matrix.os }} strategy: matrix: diff --git a/docs/conf.py b/docs/conf.py index 2c919c4..41c6cec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ import os sys.path.append(os.path.abspath("..")) -from tap import __version__ +from tap import __version__ # noqa # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -191,11 +191,11 @@ latex_elements = { # The paper size ('letterpaper' or 'a4paper'). - #'papersize': 'letterpaper', + # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). - #'pointsize': '10pt', + # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. - #'preamble': '', + # 'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples diff --git a/tox.ini b/tox.ini index d444a39..e2be436 100644 --- a/tox.ini +++ b/tox.ini @@ -15,14 +15,6 @@ commands = python tap/tests/run.py [testenv:module] commands = python -m tap -[testenv:lint] -deps = - black - flake8 -commands = - flake8 tap setup.py - black --check tap setup.py - [testenv:integration] deps = pytest