We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15381a2 commit 7bbad97Copy full SHA for 7bbad97
tunshell-client/docker/prod.Dockerfile
@@ -11,7 +11,7 @@ COPY . /app/
11
12
WORKDIR /app/tunshell-client
13
14
-RUN [ -n "${RUN_TESTS}" ] && cargo test
+RUN ([ -n "${RUN_TESTS}" ] && cargo test) || true
15
RUN cargo build --release
16
17
FROM alpine:latest
tunshell-shared/Cargo.toml
@@ -13,4 +13,6 @@ anyhow = "1.0"
futures = "0.3.5"
futures-test = "0.3.5"
log = "0.4.8"
+
+[target.'cfg(fuzzing)'.dependencies]
18
afl = "0.8.0"
0 commit comments