Skip to content

Commit b588eff

Browse files
committed
multistring improvement
1 parent 9b3e146 commit b588eff

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/pytest_plugins/solc/solc.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,14 @@ def pytest_configure(config: pytest.Config):
6767
if version != solc_version:
6868
# solc-select current does not support ARM linux
6969
if platform.system().lower() == "linux" and platform.machine().lower() == "aarch64":
70-
error_message = f"Version {version} does not match solc_version {solc_version}\
71-
and since solc-select currently does not support ARM linux we can not recover from this problem."
70+
error_message = (
71+
f"Version {version} does not match solc_version {solc_version} "
72+
"and since solc-select currently does not support ARM linux you must "
73+
"manually do the following: "
74+
"Build solc from source, and manually move the binary to "
75+
".venv/.solc-select/artifacts/solc-x.y.z/solc-x.y.z, then run "
76+
"'uv run solc-select use <x.y.z>'"
77+
)
7278
pytest.exit(error_message, returncode=pytest.ExitCode.USAGE_ERROR)
7379

7480
if config.getoption("verbose") > 0:

0 commit comments

Comments
 (0)