Skip to content

Commit

Permalink
Remove local DB test
Browse files Browse the repository at this point in the history
  • Loading branch information
cvuosalo committed Jun 3, 2022
1 parent f67cd12 commit 954acb8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions DetectorDescription/DDCMS/test/runTest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ python ${LOCAL_TEST_DIR}/python/UnitsCheck.py ${LOCAL_TEST_DIR}/data/testUnits.x

for entry in "${LOCAL_TEST_DIR}/python"/test*
do
echo "===== Test \"cmsRun $entry \" ===="
(cmsRun $entry) || die "Failure using cmsRun $entry" $?
# Skip local DB test
if ! expr $entry : '.*TGeoIteratorLocalDB.*' > /dev/null ; then
echo "===== Test \"cmsRun $entry \" ===="
(cmsRun $entry) || die "Failure using cmsRun $entry" $?
fi
done

0 comments on commit 954acb8

Please sign in to comment.