From 0822033d2c75daf2eac9e845d7c78adcf98ecf6d Mon Sep 17 00:00:00 2001 From: Niclas Grote Date: Wed, 3 Jul 2024 10:56:59 +0200 Subject: [PATCH] try debugging CI --- .github/workflows/pytest.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 3470a7d..e8e7aae 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -28,8 +28,11 @@ jobs: - name: Install python dependencies run: | - python -m pip install --upgrade pip -r requirements-dev.txt + python -m pip install --upgrade pip -r requirements.txt pip install -e . + + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 - name: Test with pytest run: python3 -m pytest tests/ --color=yes