Skip to content

Commit

Permalink
Skip the sometimes randomly failing unit tests (OHDSI#1903)
Browse files Browse the repository at this point in the history
  • Loading branch information
blootsvoets authored Jul 8, 2021
1 parent a9bc1da commit 3f7a534
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
${{ runner.os }}-maven-
- name: Build code
run: mvn -B -DskipTests -P${{ env.MAVEN_PROFILE }} package
run: mvn -B -DskipTests=true -DskipUnitTests=true -P${{ env.MAVEN_PROFILE }} package

- name: Test
# Skipping unit and integration tests for now, because they keep failing.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
${{ runner.os }}-maven-
- name: Build code
run: mvn -B -DskipTests -P${{ env.MAVEN_PROFILE }} package
run: mvn -B -DskipTests=true -DskipUnitTests=true -P${{ env.MAVEN_PROFILE }} package

# Upload it to GitHub
- name: Upload to GitHub
Expand Down

0 comments on commit 3f7a534

Please sign in to comment.