From 7591b8ff0bb26fdc6c857e4488241c0ba5bd8185 Mon Sep 17 00:00:00 2001 From: Etienne de Montalivet Date: Wed, 3 Jan 2024 09:43:02 +0100 Subject: [PATCH] fix: tests workflow --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 635e6bf..59dd8a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,10 +15,10 @@ jobs: CONDA_ENV: 'environment.yml' strategy: matrix: - python-version: ["3.9", "3.11"] - os: [ubuntu-latest, windows-latest] + python-version: ["3.9"] + os: [windows-latest] - name: tests_python-${{ matrix.python-version }} + name: tests_python-${{ matrix.python-version }}-${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: conda-incubator/setup-miniconda@v2 @@ -28,7 +28,7 @@ jobs: environment-file: ${{ env.CONDA_ENV }} - name: Install extra dependencies shell: bash -el {0} - run: poetry install --with dev + run: poetry install --with dev && conda install -c conda-forge liblsl - name: Test with pytest shell: bash -el {0} run: |