Skip to content

Commit

Permalink
fix github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
OnlyDeniko committed Sep 13, 2024
1 parent 4a4f0f0 commit 09efa9f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 09efa9f

Please # to comment.