diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a85500d9..bcf84f99 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run unittest run: tox -v -e ${{ matrix.python-version }}-unit -- -v #################### Integration tests #################### @@ -38,7 +38,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run integration tests run: tox -v -e ${{ matrix.python-version }}-integration-rabbitmq -- -v - name: Run integration tests with speedups enabled @@ -63,7 +63,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install dependencies - run: pip install --upgrade pip setuptools wheel tox tox-docker + run: pip install --upgrade pip setuptools wheel tox tox-docker>=5.0.0 docker>=7.1.0 requests>=2.32.2 - name: Run flake8 run: tox -v -e py-flake8 -- -v - name: Run pydocstyle