Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Restore cairo manifest setting in tests
Browse files Browse the repository at this point in the history
  * certain tests again only x86-compatible
  • Loading branch information
FabijanC committed May 19, 2023
1 parent 7bc515a commit dd34fe0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 1 addition & 0 deletions test/test_fork_cli_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def test_too_big_block_id():
)
assert read_stream(proc.stdout) == ""
assert f"Block number {too_big_block_id} was not found." in read_stream(proc.stderr)
assert proc.returncode != 0


@pytest.mark.parametrize(
Expand Down
7 changes: 0 additions & 7 deletions test/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,6 @@ def run_devnet_in_background(*args, stderr=None, stdout=None, env=None):
if "--accounts" not in args:
args = [*args, "--accounts", "1"]

if (
"--cairo-compiler-manifest" not in args
and os.getenv("CAIRO_1_COMPILER_MANIFEST") is not None
):
manifest = os.getenv("CAIRO_1_COMPILER_MANIFEST")
args = [*args, "--cairo-compiler-manifest", manifest]

port = args[args.index("--port") + 1] if "--port" in args else PORT

command = [
Expand Down

0 comments on commit dd34fe0

Please sign in to comment.