Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/core-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,20 +69,19 @@ jobs:
- name: 'Build cBioPortal once without tests'
working-directory: ./cbioportal
run: |
mvn --settings settings.xml -q -U -Ppublic -DskipTests clean install
mvn --settings settings.xml -q -U -DskipTests clean install
- name: 'Build cbioportal with tests'
working-directory: ./cbioportal
run: |
mvn --settings settings.xml -q -U -Ppublic clean install
mvn --settings settings.xml -q -U clean install
- name: 'Run tests separately'
working-directory: ./cbioportal
run: |
mvn -U -Ppublic test -Ddb.test.username=cbio_user -Ddb.test.password=somepassword
# TODO: decide if we want to keep this in the future, or remove it entirely
# - name: 'Run integration tests separately'
# working-directory: ./cbioportal
# run: |
# mvn verify -Pintegration-test
mvn -U test -Ddb.test.username=cbio_user -Ddb.test.password=somepassword
- name: 'Run integration tests separately'
working-directory: ./cbioportal
run: |
mvn verify -Pintegration-test -Ddb.test.username=cbio_user -Ddb.test.password=somepassword
Comment on lines +80 to +84
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we shouldn't re-enable these tests in this PR

- name: 'Run e2e tests separately'
working-directory: ./cbioportal
run: |
Expand Down