Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
defreng committed Sep 17, 2023
1 parent 9289d3e commit 055d9ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:

env:
GITLAB_CE_VERSION: ${{ matrix.gitlab-version }}
GITLAB_ROOT_PASSWORD: dvqMom4ruD9oqcErwtij

steps:
- uses: actions/checkout@v4
Expand All @@ -87,7 +88,7 @@ jobs:
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
- name: Start gitlab
- name: Start GitLab
run: |
docker compose -f docker-compose.ci.yml up -d
./scripts/await-healthy.sh
Expand All @@ -99,10 +100,9 @@ jobs:
- run: coverage run -m pytest
env:
# FoxOps test configuration
FOXOPS_TESTS_GITLAB_ADDRESS: http://localhost:8929
FOXOPS_TESTS_GITLAB_USERNAME: root
FOXOPS_TESTS_GITLAB_PASSWORD: dvqMom4ruD9oqcErwtij
FOXOPS_TESTS_GITLAB_PASSWORD: ${{ env.GITLAB_ROOT_PASSWORD }}

- name: Check test coverage
run: coverage report
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
ports:
- 8929:8929
environment:
GITLAB_ROOT_PASSWORD: dvqMom4ruD9oqcErwtij
GITLAB_ROOT_PASSWORD: ${GITLAB_ROOT_PASSWORD}
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://127.0.0.1:8929'
labels:
Expand Down

0 comments on commit 055d9ac

Please sign in to comment.