8 lines
100 B
Bash
8 lines
100 B
Bash
|
#! /usr/bin/env bash
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
python /app/app/tests_pre_start.py
|
||
|
|
||
|
bash ./scripts/test.sh "$@"
|