diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 318ccc9e..9fd3fbd9 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -42,6 +42,10 @@ jobs: run: | while true; do response=$(curl -s -o /dev/null -w "%{http_code}" http://127.0.0.1:9876/get); if [ "$response" = "200" ]; then echo "HTTP 200 OK received"; break; else echo "Retrying..."; sleep 1; fi; done + - name: Echo installed packages + run: | + pip freeze + - name: Test with pytest run: poetry run pytest -v -rs tests --runslow --cov=./ --cov-report=xml