Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 8, 2023
1 parent 3bae8cf commit 9827ba7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/jupyter-ai/jupyter_ai/tests/test_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
["--AiExtension.allowed_providers", KNOWN_LM_A],
],
)
@pytest.mark.skip(reason="Reads from user's config file instead of an isolated one. Causes test flakiness during local development.")
@pytest.mark.skip(
reason="Reads from user's config file instead of an isolated one. Causes test flakiness during local development."
)
def test_allows_providers(argv, jp_configurable_serverapp):
server = jp_configurable_serverapp(argv=argv)
ai = AiExtension()
Expand All @@ -32,7 +34,9 @@ def test_allows_providers(argv, jp_configurable_serverapp):
["--AiExtension.allowed_providers", KNOWN_LM_B],
],
)
@pytest.mark.skip(reason="Reads from user's config file instead of an isolated one. Causes test flakiness during local development.")
@pytest.mark.skip(
reason="Reads from user's config file instead of an isolated one. Causes test flakiness during local development."
)
def test_blocks_providers(argv, jp_configurable_serverapp):
server = jp_configurable_serverapp(argv=argv)
ai = AiExtension()
Expand Down

0 comments on commit 9827ba7

Please sign in to comment.