From d3bf401a9dadd9eb35af9d017e4c1e2b87b79924 Mon Sep 17 00:00:00 2001 From: SimonThordal Date: Mon, 15 Jul 2024 14:07:34 +0200 Subject: [PATCH] boost verbosity --- .github/workflows/build.yml | 8 ++++---- pytest.ini | 4 +++- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f0aa39c..e30d8ac3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 @@ -78,9 +78,9 @@ 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 diff --git a/pytest.ini b/pytest.ini index d4f1fbf5..0f70871b 100644 --- a/pytest.ini +++ b/pytest.ini @@ -2,4 +2,6 @@ filterwarnings = ignore:Elasticsearch built-in security: -asyncio_mode=strict \ No newline at end of file +asyncio_mode=strict + +log_cli = True \ No newline at end of file