Make sure Cargo.toml included in Rust backend test container
All checks were successful
Podman Rootless Demo / test-backend (push) Successful in 6m25s

This commit is contained in:
continuist 2025-09-20 10:57:05 -04:00
parent d4cfa4799a
commit 93ce4f81b6

View file

@ -27,6 +27,6 @@ RUN cargo test --workspace --locked --no-run
# Runner: minimal runtime for test execution # Runner: minimal runtime for test execution
FROM base AS runner FROM base AS runner
COPY --from=test-build /app/target /app/target COPY --from=test-build /app /app
WORKDIR /app WORKDIR /app
CMD ["cargo", "test", "--workspace", "--locked", "--", "--test-threads=1"] CMD ["cargo", "test", "--workspace", "--locked", "--", "--test-threads=1"]