* backoff for companies scroll * remove a unused companies stream property * fix tests * bump version * update source_specs
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
|
|
|