File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments