diff --git a/.github/workflows/llama_stack.yml b/.github/workflows/llama_stack.yml index 4d72281e23..22b71b88d7 100644 --- a/.github/workflows/llama_stack.yml +++ b/.github/workflows/llama_stack.yml @@ -133,7 +133,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/meta_llama.yml b/.github/workflows/meta_llama.yml index be23c1b22b..893d3cb739 100644 --- a/.github/workflows/meta_llama.yml +++ b/.github/workflows/meta_llama.yml @@ -72,7 +72,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/mistral.yml b/.github/workflows/mistral.yml index 2281a97406..6916a6b996 100644 --- a/.github/workflows/mistral.yml +++ b/.github/workflows/mistral.yml @@ -73,7 +73,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/nvidia.yml b/.github/workflows/nvidia.yml index 113a324749..caccde61a9 100644 --- a/.github/workflows/nvidia.yml +++ b/.github/workflows/nvidia.yml @@ -74,7 +74,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/openrouter.yml b/.github/workflows/openrouter.yml index 73e9df30b2..baead13696 100644 --- a/.github/workflows/openrouter.yml +++ b/.github/workflows/openrouter.yml @@ -72,7 +72,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/stackit.yml b/.github/workflows/stackit.yml index a122f0f1b5..b2c937e000 100644 --- a/.github/workflows/stackit.yml +++ b/.github/workflows/stackit.yml @@ -72,7 +72,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/.github/workflows/togetherai.yml b/.github/workflows/togetherai.yml index bec2ea537b..fc21f2a6a5 100644 --- a/.github/workflows/togetherai.yml +++ b/.github/workflows/togetherai.yml @@ -72,7 +72,7 @@ jobs: run: | hatch env prune hatch -e test env run -- uv pip install git+https://github.com/deepset-ai/haystack.git@main - hatch run test:all + hatch run test:cov-retry - name: Send event to Datadog for nightly failures if: failure() && github.event_name == 'schedule' diff --git a/integrations/llama_stack/pyproject.toml b/integrations/llama_stack/pyproject.toml index 4e782a4c3c..cb89d71d07 100644 --- a/integrations/llama_stack/pyproject.toml +++ b/integrations/llama_stack/pyproject.toml @@ -60,7 +60,7 @@ dependencies = [ [tool.hatch.envs.test.scripts] unit = 'pytest -m "not integration" {args:tests}' integration = 'pytest -m "integration" {args:tests}' -all = 'pytest --reruns 3 --reruns-delay 30 -x {args:tests}' +all = 'pytest {args:tests}' cov-retry = 'pytest --cov=haystack_integrations --reruns 3 --reruns-delay 30 -x {args:tests}' types = "mypy -p haystack_integrations.components.generators.llama_stack {args}" diff --git a/integrations/meta_llama/pyproject.toml b/integrations/meta_llama/pyproject.toml index 78ec4b40a3..1fc0423d90 100644 --- a/integrations/meta_llama/pyproject.toml +++ b/integrations/meta_llama/pyproject.toml @@ -63,7 +63,7 @@ dependencies = [ [tool.hatch.envs.test.scripts] unit = 'pytest -m "not integration" {args:tests}' integration = 'pytest -m "integration" {args:tests}' -all = 'pytest --reruns 3 --reruns-delay 30 -x {args:tests}' +all = 'pytest {args:tests}' cov-retry = 'pytest --cov="haystack_integrations" --reruns 3 --reruns-delay 30 -x {args:tests}' types = "mypy -p haystack_integrations.components.generators.meta_llama {args}" diff --git a/integrations/togetherai/pyproject.toml b/integrations/togetherai/pyproject.toml index 11f576bb4c..68a6923bd4 100644 --- a/integrations/togetherai/pyproject.toml +++ b/integrations/togetherai/pyproject.toml @@ -65,7 +65,7 @@ dependencies = [ [tool.hatch.envs.test.scripts] unit = 'pytest -m "not integration" {args:tests}' integration = 'pytest -m "integration" {args:tests}' -all = 'pytest --reruns 3 --reruns-delay 30 -x {args:tests}' +all = 'pytest {args:tests}' cov-retry = 'pytest --cov=haystack_integrations --reruns 3 --reruns-delay 30 -x {args:tests}' types = """mypy -p haystack_integrations.components.generators.togetherai {args}"""