From 71edafaa688fdc7537e046f844672b48adf2b20b Mon Sep 17 00:00:00 2001 From: overcat <4catcode@gmail.com> Date: Sun, 27 Aug 2023 11:00:58 +0800 Subject: [PATCH] chore: add aiohttp and aiohttp-sse-client as optional dependencies. --- .github/workflows/continuous-integration-workflow.yml | 4 ++++ 1 file changed, 4 insertions(+) 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