Skip to content

Commit

Permalink
ci: run all integration tests except Auth tests
Browse files Browse the repository at this point in the history
  • Loading branch information
muzarski authored and dkropachev committed Oct 28, 2024
1 parent 94b6d16 commit 9b9984f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:

- name: Run integration tests on Scylla ${{ steps.scylla-version.outputs.value }}
id: run-integration-tests
run: SCYLLA_VERSION="release:${{ steps.scylla-version.outputs.value }}" make run-test-integration-scylla
run: SCYLLA_TEST_FILTER="-AuthenticationTests.*:AsyncTests.Integration_Cassandra_Close" SCYLLA_VERSION="release:${{ steps.scylla-version.outputs.value }}" make run-test-integration-scylla

- name: Upload test logs
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:

- name: Run integration tests on Cassandra ${{ steps.cassandra-version.outputs.value }}
id: run-integration-tests
run: CASSANDRA_VERSION="${{ steps.cassandra-version.outputs.value }}" make run-test-integration-cassandra
run: CASSANDRA_TEST_FILTER="-AuthenticationTests.*:AsyncTests.Integration_Cassandra_Close" CASSANDRA_VERSION="${{ steps.cassandra-version.outputs.value }}" make run-test-integration-cassandra

- name: Upload test logs
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 9b9984f

Please sign in to comment.