From f231c1eec863abb96e546fe079709df966294750 Mon Sep 17 00:00:00 2001 From: marioevz Date: Thu, 13 Apr 2023 11:07:38 -0500 Subject: [PATCH] simulators/ethereum/pyspec: Add Dockerfile comment to run locally generated fixtures --- simulators/ethereum/pyspec/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/simulators/ethereum/pyspec/Dockerfile b/simulators/ethereum/pyspec/Dockerfile index 310795c36b..b7882de0e0 100644 --- a/simulators/ethereum/pyspec/Dockerfile +++ b/simulators/ethereum/pyspec/Dockerfile @@ -18,12 +18,15 @@ ADD ./pyspec /pyspec WORKDIR /pyspec COPY --from=builder /source/pyspec/pyspec . +# To run locally generated fixtures, comment the following RUN lines and +# uncomment the ADD line. # Download the latest fixture release. RUN wget https://github.com/ethereum/execution-spec-tests/releases/latest/download/fixtures.tar.gz # Extract the latest fixtures. RUN tar -xzvf fixtures.tar.gz RUN mv fixtures /fixtures +# ADD ./pyspec/fixtures /fixtures # Point to executable and test fixtures. ENV TESTPATH /fixtures