Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Services might be shared in test matrix #1453

Merged
merged 5 commits into from
Oct 20, 2023
Merged
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
12 changes: 7 additions & 5 deletions .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ jobs:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
mongodb:
image: mongo:4.4
ports:
- 27017:27017
# Currently not used as functional test is started with "d" flag that results in locally started mongodb
# mongodb:
# image: mongo:4.4
# ports:
# - 27017:27017
context-server:
image: wistefan/context-server:0.2.0
env:
Expand All @@ -59,8 +60,9 @@ jobs:

strategy:
fail-fast: false
#max-parallel: 1
matrix:
test: [ 'functional_146_146', functional_634_634 ]
test: [ 'functional_0_632','functional_633_1003', 'functional_1004_1440', 'functional_1441_end', 'unit']

steps:
- uses: actions/checkout@v2
Expand Down
Loading