mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-09-02 21:33:08 +00:00

* Add --partition-by-api and --partition-host args to ingest * Fix error in make check * Bump changelog * Add a test ingest script Also add a workaround for the test causing 400s from our api. Seems we need to make sure unstructured-api can handle getting a file.content_type of None. * Remove the content type workaround
20 lines
731 B
Bash
Executable File
20 lines
731 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eux -o pipefail
|
|
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd "$SCRIPT_DIR"/.. || exit 1
|
|
|
|
# NOTE(crag): sets number of tesseract threads to 1 which may help with more reproducible outputs
|
|
export OMP_THREAD_LIMIT=1
|
|
|
|
./test_unstructured_ingest/test-ingest-s3.sh
|
|
./test_unstructured_ingest/test-ingest-azure.sh
|
|
./test_unstructured_ingest/test-ingest-github.sh
|
|
./test_unstructured_ingest/test-ingest-gitlab.sh
|
|
./test_unstructured_ingest/test-ingest-wikipedia.sh
|
|
./test_unstructured_ingest/test-ingest-biomed-api.sh
|
|
./test_unstructured_ingest/test-ingest-biomed-path.sh
|
|
./test_unstructured_ingest/test-ingest-local.sh
|
|
./test_unstructured_ingest/test-ingest-against-api.sh
|