5 lines
138 B
Text
5 lines
138 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
|
||
|
|
docker-compose -f $DIR/test.yml run test python manage.py test "$@"
|