2023-02-14 12:27:45 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux -o pipefail
|
|
|
|
|
2023-02-21 10:15:33 -08:00
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
cd "$SCRIPT_DIR"/.. || exit 1
|
2023-02-16 08:45:50 -08:00
|
|
|
|
2023-04-11 00:11:50 -07:00
|
|
|
# NOTE(crag): sets number of tesseract threads to 1 which may help with more reproducible outputs
|
|
|
|
export OMP_THREAD_LIMIT=1
|
|
|
|
|
2023-02-21 10:15:33 -08:00
|
|
|
./test_unstructured_ingest/test-ingest-s3.sh
|
2023-03-11 00:43:40 +01:00
|
|
|
./test_unstructured_ingest/test-ingest-azure.sh
|
2023-05-16 11:46:30 -07:00
|
|
|
./test_unstructured_ingest/test-ingest-discord.sh
|
2023-02-27 23:36:44 +01:00
|
|
|
./test_unstructured_ingest/test-ingest-github.sh
|
2023-03-08 09:15:21 +01:00
|
|
|
./test_unstructured_ingest/test-ingest-gitlab.sh
|
2023-06-16 09:28:24 -07:00
|
|
|
./test_unstructured_ingest/test-ingest-google-drive.sh
|
2023-02-28 09:25:11 +01:00
|
|
|
./test_unstructured_ingest/test-ingest-wikipedia.sh
|
2023-03-11 01:09:54 +00:00
|
|
|
./test_unstructured_ingest/test-ingest-biomed-api.sh
|
|
|
|
./test_unstructured_ingest/test-ingest-biomed-path.sh
|
2023-03-30 07:53:23 +09:00
|
|
|
./test_unstructured_ingest/test-ingest-local.sh
|
2023-04-16 12:34:43 -07:00
|
|
|
./test_unstructured_ingest/test-ingest-slack.sh
|
2023-04-12 01:05:07 -04:00
|
|
|
./test_unstructured_ingest/test-ingest-against-api.sh
|
2023-06-21 15:14:50 -07:00
|
|
|
./test_unstructured_ingest/test-ingest-gcs.sh
|
2023-06-12 15:02:48 -04:00
|
|
|
# NOTE(yuming): The following test should be put after any tests with --preserve-downloads option
|
|
|
|
./test_unstructured_ingest/test-ingest-pdf-fast-reprocess.sh
|