blob: acd0e1e9abf72b046728b1a421e47151b8dd92a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env bash
echo "Running functional tests :"
#ls -l /data
ls -l /data/tests
if [ -f /data/tests/functional_pod/run_functional_tests.sh ];
then
echo "running script..."
bash /data/tests/functional_pod/run_functional_tests.sh;
fi
echo "<END OF JOB>"
|