* add boilerplate * configure schemas * add connector doc * update airbyte docs * edit spec * configure incremental sync * use custom components * add incremental acceptances tests * add partnerstack to source def * auto-bump connector version Co-authored-by: marcosmarxm <marcosmarxm@gmail.com> Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
17 lines
439 B
Bash
17 lines
439 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/source-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/source-acceptance-test \
|
|
--acceptance-test-config /test_input
|
|
|