Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10.16"
python-version: "3.12.9 "

- name: Install dependencies
run: poetry install --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.16 as base
FROM python:3.12.9 as base
LABEL maintainer "ODL DevOps <[email protected]>"

# Add package files, install updated node and pip
Expand Down
17 changes: 8 additions & 9 deletions authentication/views_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,18 +524,17 @@ def register_details(self, auth_state):
return response.json()


AuthStateMachine.TestCase.settings = hypothesis_settings(
max_examples=100,
stateful_step_count=10,
deadline=None,
verbosity=Verbosity.normal,
suppress_health_check=[HealthCheck.filter_too_much],
)


class AuthStateTestCase(HTestCase, AuthStateMachine.TestCase):
"""TestCase for AuthStateMachine"""

settings = hypothesis_settings(
max_examples=100,
stateful_step_count=10,
deadline=None,
verbosity=Verbosity.normal,
suppress_health_check=[HealthCheck.filter_too_much],
)


@pytest.mark.usefixtures("mock_email_send")
def test_new_register_no_session_partial(client):
Expand Down
Loading
Loading