mirror of https://github.com/grafana/grafana
Merge pull request #15458 from bergquist/integration_tests_all_packages
run db tests in all packagespull/15742/head
commit
06de01dc23
@ -0,0 +1,17 @@ |
||||
#!/bin/bash |
||||
function exit_if_fail { |
||||
command=$@ |
||||
echo "Executing '$command'" |
||||
eval $command |
||||
rc=$? |
||||
if [ $rc -ne 0 ]; then |
||||
echo "'$command' returned $rc." |
||||
exit $rc |
||||
fi |
||||
} |
||||
|
||||
export GRAFANA_TEST_DB=mysql |
||||
|
||||
time for d in $(go list ./pkg/...); do |
||||
exit_if_fail go test -tags=integration $d |
||||
done |
@ -0,0 +1,17 @@ |
||||
#!/bin/bash |
||||
function exit_if_fail { |
||||
command=$@ |
||||
echo "Executing '$command'" |
||||
eval $command |
||||
rc=$? |
||||
if [ $rc -ne 0 ]; then |
||||
echo "'$command' returned $rc." |
||||
exit $rc |
||||
fi |
||||
} |
||||
|
||||
export GRAFANA_TEST_DB=postgres |
||||
|
||||
time for d in $(go list ./pkg/...); do |
||||
exit_if_fail go test -tags=integration $d |
||||
done |
Loading…
Reference in new issue