mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-06-27 02:30:08 +00:00

* Initial commit of discord connector based off of initial work by @tnachen with modifications https://github.com/tnachen/unstructured/tree/tnachen/discord_connector * Add test file change format of imports * working version of the connector More work to be done to tidy it up and add any additional options * add to test fixtures update * fix spacing * tests working, switching to bot testing channel * add additional channel add reprocess to tests * add try clause to allow for exit on error Update changelog and bump version * add updated expected output filtes * add logic to check if —discord-period is an integer Add more to option description * fix lint error * Update discord reqs * PR feedback * add newline * another newline --------- Co-authored-by: Justin Bossert <packerbacker21@hotmail.com>
22 lines
829 B
Bash
Executable File
22 lines
829 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-discord.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-slack.sh
|
|
./test_unstructured_ingest/test-ingest-against-api.sh
|