Skip to content

Commit

Permalink
Run unit tests in Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderianblair committed Jul 18, 2024
1 parent 48d6beb commit fd2f60a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions docker/platypus/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ RUN git checkout $build_git_sha
WORKDIR /$WORKDIR/platypus
RUN make -j$compile_cores coverage=$coverage

# Test Platypus
WORKDIR /$WORKDIR/platypus
# Test Platypus regression tests
WORKDIR /$WORKDIR/platypus
RUN make test linkcoverage=$coverage

# Build Platypus unit tests
WORKDIR /$WORKDIR/platypus/unit
RUN make -j$compile_cores coverage=$coverage

# Test Platypus unit tests
WORKDIR /$WORKDIR/platypus/unit
RUN make test linkcoverage=$coverage

0 comments on commit fd2f60a

Please sign in to comment.