Skip to content
Snippets Groups Projects

F yaml documentation

Merged Alexander Schlemmer requested to merge f-yaml-documentation into dev
7 files
+ 58
27
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 4
4
@@ -34,11 +34,11 @@ echo "Filling the database"
echo "Testing the crawler database"
python3 -m pytest test_crawler_with_cfoods.py
echo "make a change"
pushd extroot
cd extroot
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
cd ..
echo "run crawler"
./crawl.py / | tee $OUT
# rename the moved file
@@ -58,9 +58,9 @@ then
fi
set -e
echo "undo changes"
pushd extroot
cd extroot
egrep -liRZ 'A description of this example' . | xargs -0 -l sed -i -e 's/A description of this example/A description of another example/g'
popd
cd ..
python3 test_table.py
# TODO the following test deletes lots of the data inserted by the crawler
echo "Testing im and export"
Loading