Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HJ-300 - Adds fail-fast: false to Safe-Tests build strategy #5586

Merged
merged 11 commits into from
Dec 10, 2024
1 change: 1 addition & 0 deletions .github/workflows/backend_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ jobs:
Safe-Tests:
needs: Check-Container-Startup
strategy:
fail-fast: false
matrix:
python_version: ["3.9.18", "3.10.13"]
test_selection:
Expand Down
1 change: 1 addition & 0 deletions noxfiles/setup_tests_nox.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def pytest_ctl(session: Session, mark: str, coverage_arg: str) -> None:
"pytest",
coverage_arg,
"tests/ctl/",
"-x",
andres-torres-marroquin marked this conversation as resolved.
Show resolved Hide resolved
"-m",
mark,
)
Expand Down
1 change: 1 addition & 0 deletions tests/ctl/api/test_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def parent_server_config_password_only():
class TestFilterDataCategories:
def test_filter_data_categories_excluded(self) -> None:
"""Test that the filter method works as intended"""
assert False # Intentional failure to test CI/CD
andres-torres-marroquin marked this conversation as resolved.
Show resolved Hide resolved
excluded_data_categories = [
"user.financial",
"user.payment",
Expand Down
Loading