From 0af4d40394f4e5bac8343409bb0e7336b8724a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Wed, 2 Jun 2021 07:49:28 +0200 Subject: [PATCH] FIX: allow abort --- integrationtests/test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integrationtests/test.sh b/integrationtests/test.sh index a56b7584..b7858415 100755 --- a/integrationtests/test.sh +++ b/integrationtests/test.sh @@ -20,10 +20,12 @@ echo "Testing the crawler database" python3 -m pytest test_crawler_with_cfoods.py echo "make a change" pushd extroot +set +e egrep -liRZ 'A description of another example' . | xargs -0 -l sed -i -e 's/A description of another example/A description of this example/g' # remove a file to check that this does not lead to a crawler crash mv DataAnalysis/2010_TestProject/2019-02-03_something/README.xlsx DataAnalysis/2010_TestProject/2019-02-03_something/README.xlsx_back popd +set -e echo "run crawler" ./crawl.py / | tee $OUT # rename the moved file -- GitLab