-
Notifications
You must be signed in to change notification settings - Fork 7
/
test.sh
executable file
·38 lines (29 loc) · 1.07 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env bash
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
./build.sh
# Maximum is currently 30g, configurable in your algorithm image settings on grand challenge
MEM_LIMIT="4g"
docker volume create ocelot23algo-output
# Do not change any of the parameters to docker run, these are fixed
docker run --rm \
--memory="${MEM_LIMIT}" \
--memory-swap="${MEM_LIMIT}" \
--network="none" \
--cap-drop="ALL" \
--security-opt="no-new-privileges" \
--shm-size="128m" \
--pids-limit="256" \
-v $SCRIPTPATH/test/input:/input \
-v ocelot23algo-output:/output/ \
ocelot23algo
echo "Done initializing container and running inference"
docker run --rm \
-v ocelot23algo-output:/output/ \
-v $SCRIPTPATH/test/:/input/ \
python:3.9-slim python -c "import json, sys; f = json.load(open('/output/cell_classification.json')); sys.exit(not len(f)>0);"
if [ $? -eq 0 ]; then
echo "Tests successfully passed"
else
echo "Expected output was not found"
fi
docker volume rm ocelot23algo-output