diff --git a/.github/workflows/build-python-wrapper/action.yml b/.github/workflows/build-python-wrapper/action.yml index 25c7e20b7d..30c6db89ce 100644 --- a/.github/workflows/build-python-wrapper/action.yml +++ b/.github/workflows/build-python-wrapper/action.yml @@ -66,4 +66,5 @@ runs: python3 -m venv .env source .env/bin/activate python3 -m pip install --no-cache-dir -r requirements.txt + python3 -m pip install --no-cache-dir -r dev_requirements.txt maturin develop diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 11df78697a..a1adf05cfe 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -116,6 +116,7 @@ jobs: run: | source .env/bin/activate pip install -r requirements.txt + pip install -r dev_requirements.txt cd python/tests/ pytest --asyncio-mode=auto --html=pytest_report.html --self-contained-html @@ -179,6 +180,7 @@ jobs: run: | source .env/bin/activate pip install -r requirements.txt + pip install -r dev_requirements.txt cd python/tests/ pytest --asyncio-mode=auto -k test_pubsub --html=pytest_report.html --self-contained-html