mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
10 lines
283 B
Bash
Executable File
10 lines
283 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# This script runs the entire test suite AND logs the screen output.
|
|
# This is the quiet version of docker/test.
|
|
# The deprecation warnings that obscure the test results are omitted.
|
|
|
|
DATE=`date +%Y%m%d-%H%M%S-%3N`
|
|
docker/qtest-log 2>&1 | tee log/qtest-$DATE.log
|