Skip to content

Commit

Permalink
boost verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonThordal committed Jul 15, 2024
1 parent c138ea1 commit f179f45
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
- name: Run pytest tests
env:
YENTE_INDEX_TYPE: elasticsearch
YENTE_INDEX_URL: http://elasticsearch:9200/
YENTE_INDEX_URL: http://localhost:9200/
run: |
pytest -v tests
make test
test-opensearch:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -78,13 +78,13 @@ jobs:
- name: Run pytest tests with opensearch backend
env:
YENTE_INDEX_TYPE: opensearch
YENTE_INDEX_URL: http://opensearch:9200/
YENTE_INDEX_URL: http://localhost:9200/
run: |
pytest -v tests
make test
package-python:
runs-on: ubuntu-latest
needs: [test-opensearch]
needs: [test-elasticsearch, test-opensearch]
steps:
- uses: actions/checkout@v4
- name: Set up Python
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 f179f45

Please sign in to comment.