We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 059c53b commit 025403fCopy full SHA for 025403f
2 files changed
python/e2e/testharness/context.py
@@ -24,9 +24,7 @@ def get_cli_path_for_tests() -> str:
24
if full_path.exists():
25
return str(full_path.resolve())
26
27
- raise RuntimeError(
28
- "CLI not found for tests. Run 'npm install' in the nodejs directory."
29
- )
+ raise RuntimeError("CLI not found for tests. Run 'npm install' in the nodejs directory.")
30
31
32
CLI_PATH = get_cli_path_for_tests()
python/test_client.py
@@ -4,7 +4,6 @@
4
This file is for unit tests. Where relevant, prefer to add e2e tests in e2e/*.py instead.
5
"""
6
7
-from unittest.mock import MagicMock, patch
8
9
import pytest
10
0 commit comments