From 4c9969fe178f90d1b4e1417deda78ec78152c4d1 Mon Sep 17 00:00:00 2001 From: theissenhelen Date: Fri, 21 Feb 2025 11:55:37 +0000 Subject: [PATCH] WIP --- .github/workflows/integration-tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 2f7ca2af..cf958a9b 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -17,10 +17,16 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Set up Python + - name: Set up Python 3.10 uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: 3.10 + cache: 'pip' + + - name: Install test dependencies + run: | + python -m pip install --upgrade pip + pip install pytest pytest-md pytest-emoji - name: Install dependencies run: |