* extend template for the Java JDBC template by SAT SPEC * extend example source scaffold-java-jdbc * review upd * add other SAT tests to the template * review upd * comment non-spec tests * Revert "comment non-spec tests" This reverts commit8c78049fd9. * Revert "add other SAT tests to the template" This reverts commitc15b4dcd87. * review * review * typo * typo * new line
16 lines
438 B
Bash
16 lines
438 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
|