Skip to content

Commit

Permalink
skip: fix env var
Browse files Browse the repository at this point in the history
  • Loading branch information
DnPlas committed Jun 7, 2024
1 parent ec4f540 commit e4cc6d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dex/tests/test_rock.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def test_rock(rock_test_env):
check_rock = CheckRock("rockcraft.yaml")
rock_image = check_rock.get_name()
rock_version = check_rock.get_version()
LOCAL_rock_IMAGE = f"{rock_image}:{rock_version}"
LOCAL_ROCK_IMAGE = f"{rock_image}:{rock_version}"

# create rock filesystem
subprocess.run(["docker", "run", LOCAL_rock_IMAGE, "exec", "ls", "-la", "/usr/local/bin/docker-entrypoint"], check=True)
subprocess.run(["docker", "run", LOCAL_rock_IMAGE, "exec", "ls", "-la", "/usr/local/bin/dex"], check=True)
subprocess.run(["docker", "run", LOCAL_ROCK_IMAGE, "exec", "ls", "-la", "/usr/local/bin/docker-entrypoint"], check=True)
subprocess.run(["docker", "run", LOCAL_ROCK_IMAGE, "exec", "ls", "-la", "/usr/local/bin/dex"], check=True)

0 comments on commit e4cc6d4

Please sign in to comment.