Skip to content

Commit

Permalink
check without OS search
Browse files Browse the repository at this point in the history
fix: use localhost instead of service name as host

try without coverage

dont wait for indexes to be ready

Revert "dont wait for indexes to be ready"

This reverts commit 8ea5dfe.

boost verbosity
  • Loading branch information
SimonThordal committed Jul 15, 2024
1 parent fe3a2b9 commit 8b94def
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Run pytest tests
env:
YENTE_INDEX_TYPE: elasticsearch
YENTE_INDEX_URL: http://elasticsearch:9200/
YENTE_INDEX_URL: http://localhost:9200/
run: |
make test
Expand All @@ -57,7 +57,7 @@ jobs:
plugins.security.disabled: true
OPENSEARCH_INITIAL_ADMIN_PASSWORD: YenteIns3cureDefault
ports:
- 9400:9200
- 9200:9200

steps:
- uses: actions/checkout@v4
Expand All @@ -78,7 +78,7 @@ jobs:
- name: Run pytest tests with opensearch backend
env:
YENTE_INDEX_TYPE: opensearch
YENTE_INDEX_URL: http://opensearch:9400/
YENTE_INDEX_URL: http://localhost:9200/
run: |
make test
Expand Down
4 changes: 3 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
filterwarnings =
ignore:Elasticsearch built-in security:

asyncio_mode=strict
asyncio_mode=strict

log_cli = True

0 comments on commit 8b94def

Please sign in to comment.