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-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-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-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
|