examples:py3.13:
stage: check
script:
- - poetry install --only main,dev
+ - poetry install --all-extras --only main,dev
- poe examples
variables:
PYTHON_INTERPRETER: python3.13
lint:py3.13:
stage: check
script:
- - poetry install --only main,dev,lint
+ - poetry install --all-extras --only main,dev,lint
- poe check
variables:
PYTHON_INTERPRETER: python3.13
.unit: &unit
stage: check
script:
- - poetry install --only main,dev,test
+ - poetry install --all-extras --only main,dev,test
- poe test
# the following command makes sure that the source root of the coverage file is at $gitroot
- poetry run bash -c "coverage combine .coverage; coverage xml"