more reversions

This commit is contained in:
Kenneth Kehl
2025-06-09 14:29:19 -07:00
parent deec2bc785
commit 724c537435
3 changed files with 4 additions and 4 deletions

View File

@@ -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

View File

@@ -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"

View File

@@ -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):