From 09efa9f10730dab935ef7b702bedad4b850b1a94 Mon Sep 17 00:00:00 2001 From: Denis Kulandin Date: Fri, 13 Sep 2024 13:50:16 +0300 Subject: [PATCH] fix github CI --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2d83956ad..da10fed4b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -178,7 +178,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10"] # TODO: 3.11 (lightfm installation) steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -189,7 +189,6 @@ jobs: python -m venv venv . ./venv/bin/activate pip install --upgrade pip wheel poetry==1.5.1 lightfm==1.17 - poetry cache clear pypi --all ./poetry_wrapper.sh --experimental install --all-extras - name: pytest run: | @@ -229,7 +228,7 @@ jobs: - name: Combine coverage run: | . ./venv/bin/activate - coverage combine .coverage_core_${{ matrix.python-version }} .coverage_torch_${{ matrix.python-version }} .coverage_spark_${{ matrix.python-version }} .coverage_all_${{ matrix.python-version }} .coverage_experimental_${{ matrix.python-version }} + coverage combine .coverage_core_${{ matrix.python-version }} .coverage_torch_${{ matrix.python-version }} .coverage_spark_${{ matrix.python-version }} .coverage_all_${{ matrix.python-version }} coverage report --fail-under=100 coverage xml