mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-08-29 19:23:31 +00:00

* add the first version of airtable connector * change imports as inline to fail gracefully in case of lacking dependency * parse tables as csv rather than plain text * add relevant logic to be able to use --airtable-list-of-paths * add script for creation of reseources for testing, add test script (large) for testing with a large number of tables to validate scroll functionality, update test script (diff) based on the new settings * fix ingest test names * add scripts for the large table test * remove large table test from diff test * make base and table ids explicit * add and remove comments * use -ne instead of != * update code based on the recent ingest refactor, update changelog and version * shellcheck fix * update comments * update check-num-rows-and-columns-output error message Co-authored-by: ryannikolaidis <1208590+ryannikolaidis@users.noreply.github.com> * update help comments * update help comments * update help comments * update workflows to set auth tokens and to run make install * add comments on create_scale_test_components * separate component ids from the test script, add comments to document test component creation * add LARGE_BASE test, implement LARGE_BASE component creation, replace component id * shellcheck fixes * shellcheck fixes * update docs * update comment * bump version * add wrongly deleted file * sort columns before saving to process * Update ingest test fixtures (#1098) Co-authored-by: ahmetmeleq <ahmetmeleq@users.noreply.github.com> --------- Co-authored-by: ryannikolaidis <1208590+ryannikolaidis@users.noreply.github.com> Co-authored-by: ahmetmeleq <ahmetmeleq@users.noreply.github.com>
38 lines
1.8 KiB
Bash
Executable File
38 lines
1.8 KiB
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-box.sh
|
|
./test_unstructured_ingest/test-ingest-discord.sh
|
|
./test_unstructured_ingest/test-ingest-dropbox.sh
|
|
./test_unstructured_ingest/test-ingest-github.sh
|
|
./test_unstructured_ingest/test-ingest-gitlab.sh
|
|
./test_unstructured_ingest/test-ingest-google-drive.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-slack.sh
|
|
./test_unstructured_ingest/test-ingest-against-api.sh
|
|
./test_unstructured_ingest/test-ingest-gcs.sh
|
|
./test_unstructured_ingest/test-ingest-onedrive.sh
|
|
./test_unstructured_ingest/test-ingest-outlook.sh
|
|
./test_unstructured_ingest/test-ingest-elasticsearch.sh
|
|
#./test_unstructured_ingest/test-ingest-confluence-diff.sh
|
|
./test_unstructured_ingest/test-ingest-confluence-large.sh
|
|
./test_unstructured_ingest/test-ingest-airtable-diff.sh
|
|
./test_unstructured_ingest/test-ingest-airtable-large.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file-with-encoding.sh
|
|
./test_unstructured_ingest/test-ingest-local-single-file-with-pdf-infer-table-structure.sh
|
|
# NOTE(yuming): The following test should be put after any tests with --preserve-downloads option
|
|
./test_unstructured_ingest/test-ingest-pdf-fast-reprocess.sh
|
|
./test_unstructured_ingest/test-ingest-sharepoint.sh |