Skip to content

Commit

Permalink
Disable Oracle integration tests in CI (#1917)
Browse files Browse the repository at this point in the history
* Disable running the Oracle integration tests for now

* Remove references to internal info
  • Loading branch information
nr-ahemsath authored Sep 14, 2023
1 parent 1b91bc0 commit f395476
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/all_solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,8 @@ jobs:
MySql,
NServiceBus,
NServiceBus5,
Oracle,
# Disabling Oracle temporarily
#Oracle,
Postgres,
RabbitMq,
Redis,
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/run_integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ jobs:
run: |
if [ "${{ github.event.inputs.unbounded-test-namespaces }}" == "ALL" ] ; then
# Use the full list of namespaces
namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Oracle', 'Postgres', 'RabbitMq', 'Redis' ]"
# Oracle is disabled temporarily
#namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Oracle', 'Postgres', 'RabbitMq', 'Redis' ]"
namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Postgres', 'RabbitMq', 'Redis' ]"
else
# Just use the supplied list of namespaces
namespaces="[ ${{ github.event.inputs.unbounded-test-namespaces }} ]"
Expand Down

0 comments on commit f395476

Please sign in to comment.