Fix for dirty SQL tests
* Fixed an error in the main post-build script which caused dirty SQL tests to be skipped
This commit is contained in:
parent
74b6f2ab09
commit
24f40c5549
1 changed files with 2 additions and 2 deletions
|
@ -53,6 +53,6 @@ fi
|
|||
if [ -d user ]; then
|
||||
pg_prove -U $TEST_USER -d $TEST_DATABASE `find user/ -type f -name '*.sql'` || exit 1
|
||||
fi
|
||||
if [ -x dirty/run-dirty-tests.sql ]; then
|
||||
( cd dirty; exec ./run-dirty-tests.sql ) || exit 1
|
||||
if [ -x dirty/run-dirty-tests.sh ]; then
|
||||
( cd dirty; exec ./run-dirty-tests.sh ) || exit 1
|
||||
fi
|
||||
|
|
Reference in a new issue