diff --git a/docs_theme/requirements.txt b/docs_theme/requirements.txt index b19f731a..56d32c9e 100644 --- a/docs_theme/requirements.txt +++ b/docs_theme/requirements.txt @@ -1,2 +1,2 @@ mkdocs==1.1.2 -mkdocs-include-markdown-plugin=2.8.0 +mkdocs-include-markdown-plugin==2.8.0 diff --git a/tests/test_display.py b/tests/test_display.py index 72a9c451..0ed1ae22 100644 --- a/tests/test_display.py +++ b/tests/test_display.py @@ -7,7 +7,7 @@ from jrnl.jrnl import _display_search_results # fmt: off # see: https://github.com/psf/black/issues/664 -@pytest.mark.parametrize("export_format", [ "pretty", "short","markdown"]) +@pytest.mark.parametrize("export_format", [ "pretty", "short", "markdown"]) #fmt: on @mock.patch.object(argparse, "Namespace", return_value={"export": "markdown", "filename": "irrele.vant"}) def test_export_format(mock_args, export_format): diff --git a/tests/test_plugin.py b/tests/test_plugin.py index 33c7f1ce..a48ee3dc 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -1,10 +1,13 @@ -import pytest - -from jrnl.plugins.exporter import testing_exporter, json_exporter -from jrnl import Entry, Journal from datetime import date import json +import pytest + +from jrnl import Entry +from jrnl import Journal +from jrnl.plugins.exporter import json as json_exporter +from jrnl.plugins.exporter import testing as testing_exporter + @pytest.fixture() def create_entry():