diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index 6a7d508a0..73e114bd8 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -9,10 +9,10 @@ runs: sudo apt-get update \ && sudo apt-get install -y --no-install-recommends \ libcurl4-openssl-dev - - name: Set up Python 3.12.2 + - name: Set up Python 3.12.3 uses: actions/setup-python@v4 with: - python-version: "3.12.2" + python-version: "3.12.3" - name: Install poetry shell: bash run: pip install poetry==2.1.3 diff --git a/pyproject.toml b/pyproject.toml index 47018b518..d6d0ab068 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -88,7 +88,7 @@ jinja2-cli = {version = "==0.8.2", extras = ["yaml"]} moto = "*" pip-audit = "*" pre-commit = "^4.2.0" -pytest = "^8.3.5" +pytest = "^8.3.2" pytest-env = "^1.1.3" pytest-mock = "^3.14.1" pytest-playwright = "^0.7.0" diff --git a/tests/end_to_end/test_create_new_template.py b/tests/end_to_end/test_create_new_template.py index 50265c075..5d940d6b3 100644 --- a/tests/end_to_end/test_create_new_template.py +++ b/tests/end_to_end/test_create_new_template.py @@ -95,7 +95,7 @@ async def create_new_template(page): # We are not going to send the message for this test, we just want to confirm # that the template has been created and we are now seeing the message from the # template in the preview. - # assert "Test message for e2e test" in page.content() + assert "Test message for e2e test" in page.content() def test_create_new_template(end_to_end_context):