8 lines
216 B
Bash
Executable File
8 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
printf "\nStarting tests\n"
|
|
|
|
printf "Building docker container\n"
|
|
docker build -t tests .
|
|
|
|
printf "Running docker container to test your python code\n"
|
|
docker run --rm tests python /app/dragon-bot.py test |