Skip to content

Commit

Permalink
chore: skip flaky geometry tests:
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhiHanZ committed Aug 19, 2024
1 parent d63eebb commit a42deae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ jobs:
curl -u databend:databend --request POST localhost:8000/v1/query --header 'Content-Type:application/json' --data-raw '{"sql":"select 1"}'
- name: Run Maven clean deploy with release profile
run: mvn test -DexcludedGroups=cluster
run: mvn test -DexcludedGroups=cluster,FLAKY
env:
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
2 changes: 1 addition & 1 deletion .github/workflows/test_cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
version: '1.2.616-nightly'
target: 'x86_64-unknown-linux-gnu'
- name: Run Maven clean deploy with release profile
run: mvn clean test
run: mvn test -DexcludedGroups=FLAKY
env:
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,7 @@ public void testSelectWithPreparement()
}
}

@Ignore("Skipping due to failed cluster tests")
@Test(groups = {"IT"})
@Test(groups = {"IT", "FLAKY"})
public void testSelectGeometry() throws SQLException, ParseException {
// skip due to failed cluster tests

Expand Down

0 comments on commit a42deae

Please sign in to comment.