-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
only run integration tests for a subset of integrations during PR builds #710
Conversation
f365762
to
d687ce6
Compare
tools/bin/integration_test_pr.sh
Outdated
:airbyte-integrations:connectors:destination-csv:integrationTest \ | ||
:airbyte-integrations:connectors:source-postgres-singer:integrationTest \ | ||
:airbyte-integrations:connectors:source-stripe-singer:integrationTest \ | ||
:airbyte-integrations:connectors:source-exchangeratesapi-singer:integrationTest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: missing newline at end of file
tools/bin/standard_test_pr.sh
Outdated
assert_root | ||
|
||
./gradlew --no-daemon --scan -x generateProtocolClassFiles \ | ||
:airbyte-integrations:connectors:source-github-singer:standardSourceTest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: missing newline at end of file
.github/workflows/gradle.yml
Outdated
run: ./gradlew --no-daemon integrationTest --scan -x generateProtocolClassFiles | ||
|
||
- name: Run Standard Source Tests | ||
- name: Run Standard Source Tests (PR) | ||
if: success() && github.ref == 'refs/heads/master' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is the matching condition reversed?
.github/workflows/gradle.yml
Outdated
run: ./tools/bin/standard_test_pr.sh | ||
|
||
- name: Run Standard Source Tests (Master) | ||
if: success() && github.ref != 'refs/heads/master' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also here
@jrhizor - nice catch. in fixing one those conditions being flipped, i managed to mess up the other. should be all good now. |
What