From 724c537435ec7beb0651829d3937edf7f0450188 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 9 Jun 2025 14:29:19 -0700 Subject: [PATCH] more reversions --- .github/actions/setup-project/action.yml | 4 ++-- pyproject.toml | 2 +- tests/end_to_end/test_create_new_template.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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):