diff --git a/.github/workflows/parallel-support.yml b/.github/workflows/parallel-support.yml index d2e0d9ff..e307f3ba 100644 --- a/.github/workflows/parallel-support.yml +++ b/.github/workflows/parallel-support.yml @@ -63,7 +63,7 @@ jobs: poetry install --with dev,test,ci - name: Run tox for all environments in parallel - timeout-minutes: 50 + timeout-minutes: 60 run: | tox -e xdist -- --reruns 10 @@ -108,6 +108,6 @@ jobs: poetry install --with dev,test,ci - name: Run tox for all environments in parallel - timeout-minutes: 50 + timeout-minutes: 60 run: | tox -e parallel -- --reruns 10 diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8d5341cd..f487f17c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -63,7 +63,7 @@ jobs: poetry install --with dev,test,ci - name: Run tox for "${{ matrix.python-version }}-unit" - timeout-minutes: 5 + timeout-minutes: 10 run: | tox --verbose --verbose -e "${{ matrix.python-version }}-unit" @@ -117,7 +117,7 @@ jobs: poetry install --with dev,test,ci - name: Run tox for "${{ matrix.python-version }}-integration" - timeout-minutes: 15 + timeout-minutes: 60 run: | tox --verbose --verbose -e "${{ matrix.python-version }}-integration" -- -n auto --reruns 10 --rerun-except AssertionError @@ -165,6 +165,6 @@ jobs: poetry install --with dev,test,ci - name: Run tox for "${{ matrix.python-version }}-smoke" - timeout-minutes: 50 + timeout-minutes: 60 run: | tox --verbose --verbose -e "${{ matrix.python-version }}-smoke" -- -n auto --reruns 10 --rerun-except AssertionError diff --git a/src/pytest_celery/api/container.py b/src/pytest_celery/api/container.py index bac60742..77d44b46 100644 --- a/src/pytest_celery/api/container.py +++ b/src/pytest_celery/api/container.py @@ -18,7 +18,8 @@ def celeryconfig(self) -> dict: @classmethod def command(cls) -> list: - # To be used with pytest_docker_tools.container using the command kwarg with the class method as value + # To be used with pytest_docker_tools.container using the command + # kwarg with the class method as value # e.g. command=MyContainer.command() raise NotImplementedError("CeleryTestContainer.command")