Revert "chore: temporary CI fix commit"

This reverts commit 2fcc40eb7e.
This commit is contained in:
Éloi Rivard 2024-04-28 09:43:10 +02:00
parent 2fcc40eb7e
commit 880a9b1a6d
No known key found for this signature in database
GPG key ID: 7EDA204EA57DD184

View file

@ -19,7 +19,6 @@ style:
image: python:3.12 image: python:3.12
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- pip install pre-commit - pip install pre-commit
- pre-commit run --all-files --show-diff-on-failure - pre-commit run --all-files --show-diff-on-failure
@ -27,7 +26,6 @@ python39:
image: python:3.9 image: python:3.9
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- poetry install --extras all - poetry install --extras all
- poetry run pytest - poetry run pytest
@ -35,7 +33,6 @@ python310:
image: python:3.10 image: python:3.10
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- poetry install --extras all - poetry install --extras all
- poetry run pytest - poetry run pytest
@ -43,7 +40,6 @@ python311:
image: python:3.11 image: python:3.11
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- poetry install --extras all - poetry install --extras all
- poetry run pytest - poetry run pytest
@ -51,7 +47,6 @@ python312:
image: python:3.12 image: python:3.12
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- poetry install --extras all - poetry install --extras all
- poetry run pytest - poetry run pytest
@ -59,7 +54,6 @@ minversions:
image: python:3.9 image: python:3.9
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- sed -i -E 's/"(\^|>=)([0-9\.]+)(.*)"/"==\2"/' pyproject.toml - sed -i -E 's/"(\^|>=)([0-9\.]+)(.*)"/"==\2"/' pyproject.toml
- sed -i -E 's/python = "==/python = "^/' pyproject.toml - sed -i -E 's/python = "==/python = "^/' pyproject.toml
- poetry lock - poetry lock
@ -70,7 +64,6 @@ doc:
image: python:3.12 image: python:3.12
stage: test stage: test
script: script:
- pip uninstall pytest-lazy-fixture
- poetry install --only doc - poetry install --only doc
- poetry run sphinx-build doc build/sphinx/html - poetry run sphinx-build doc build/sphinx/html
@ -79,7 +72,6 @@ coverage:
stage: test stage: test
allow_failure: true allow_failure: true
script: script:
- pip uninstall pytest-lazy-fixture
- pip install coveralls pyyaml tomli - pip install coveralls pyyaml tomli
- poetry install --extras all - poetry install --extras all
- poetry run pytest --cov --cov-fail-under=100 --cov-report term:skip-covered -n auto - poetry run pytest --cov --cov-fail-under=100 --cov-report term:skip-covered -n auto