* add teradata template * add teradata environment client * add teradata source connector * add docs * fix lowercase letter * fix compilation error & config test * fix timestamp * generate seed --------- Co-authored-by: Prateek Mukhedkar <123108018+prateekmukhedkar@users.noreply.github.com>
16 lines
444 B
Bash
16 lines
444 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Build latest connector image
|
|
docker build . -t $(cat acceptance-test-config.yml | grep "connector_image" | head -n 1 | cut -d: -f2-)
|
|
|
|
# Pull latest acctest image
|
|
docker pull airbyte/connector-acceptance-test:latest
|
|
|
|
# Run
|
|
docker run --rm -it \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /tmp:/tmp \
|
|
-v $(pwd):/test_input \
|
|
airbyte/connector-acceptance-test \
|
|
--acceptance-test-config /test_input
|