Skip to content
Snippets Groups Projects
Commit 6cfc24d6 authored by Ian Galpin's avatar Ian Galpin
Browse files

Added docs and test modules to isort

parent 3fc502ff
Branches
Tags
No related merge requests found
...@@ -14,14 +14,15 @@ ...@@ -14,14 +14,15 @@
# import sys # import sys
# sys.path.insert(0, os.path.abspath('.')) # sys.path.insert(0, os.path.abspath('.'))
import json
import os
import sys
from importlib import import_module from importlib import import_module
from typing import List
from docutils.parsers.rst import Directive
from docutils import nodes from docutils import nodes
from docutils.parsers.rst import Directive
from sphinx import addnodes from sphinx import addnodes
import json
import os
import sys
sys.path.insert(0, os.path.abspath( sys.path.insert(0, os.path.abspath(
os.path.join( os.path.join(
......
import json import json
import jsonschema import jsonschema
import pytest import pytest
from compendium_v2.routes.default import VERSION_SCHEMA
from compendium_v2.routes.api import THING_LIST_SCHEMA from compendium_v2.routes.api import THING_LIST_SCHEMA
from compendium_v2.routes.default import VERSION_SCHEMA
@pytest.mark.parametrize( @pytest.mark.parametrize(
......
import json import json
import jsonschema import jsonschema
import pytest import pytest
from compendium_v2.routes.service_matrix import SERVICE_MATRIX_SCHEMA from compendium_v2.routes.service_matrix import SERVICE_MATRIX_SCHEMA
......
...@@ -17,7 +17,7 @@ commands = ...@@ -17,7 +17,7 @@ commands =
coverage html coverage html
coverage report --fail-under 85 coverage report --fail-under 85
flake8 flake8
isort -c --df compendium_v2 isort -c --df compendium_v2 docs/source test
# Disable mypy in tox until build server supports python 3.9 # Disable mypy in tox until build server supports python 3.9
# mypy . # mypy .
sphinx-build -M html docs/source docs/build sphinx-build -M html docs/source docs/build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment