Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/llama_stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/meta_llama.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mistral.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nvidia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openrouter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stackit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/togetherai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion integrations/llama_stack/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion integrations/meta_llama/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down
2 changes: 1 addition & 1 deletion integrations/togetherai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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}"""
Expand Down
Loading