Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jslane-h committed Dec 4, 2024
1 parent 7bec849 commit 5ec527f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/actions/unit-test-action/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,17 @@ WORKDIR /github/workspace

# Copy the current directory contents into the container
COPY $GITHUB_WORKSPACE /github/workspace
RUN ls /github/workspace

RUN mkdir /app
COPY . /app
RUN ls /app

RUN mkdir /test
COPY ../../.. /test
RUN ls /test
# Find directories containing measure.py and run tests
RUN ls
RUN mkdir test_results
RUN openstudio measure -t ./lib/measures > test_results/measure_check_output.txt
RUN bash -c "\
Expand Down

0 comments on commit 5ec527f

Please sign in to comment.