Skip to content

Commit

Permalink
test: Make test-all auto remove docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
mendess committed Nov 24, 2024
1 parent 3f22973 commit 8526e48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ test-fast: keys

run-test-servers:
cd ci && docker build -t test_suite:latest . && cd ..
docker run -d -p 4200:4200 -p 4201:4201 -p 4202:4202 -p 4203:4203 -p 4204:4204 -p 4205:4205 -p 4206:4206 --name socketio_test test_suite:latest
docker run --rm -d -p 4200:4200 -p 4201:4201 -p 4202:4202 -p 4203:4203 -p 4204:4204 -p 4205:4205 -p 4206:4206 --name socketio_test test_suite:latest

test-all: keys run-test-servers
@cargo test --verbose --all-features
-cargo test --verbose --all-features
docker stop socketio_test

clippy:
Expand Down

0 comments on commit 8526e48

Please sign in to comment.