Skip to content

Commit

Permalink
ci/cirrus: experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
neersighted committed Mar 25, 2024
1 parent 59c8d29 commit c245647
Showing 1 changed file with 28 additions and 21 deletions.
49 changes: 28 additions & 21 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,38 @@ freebsd_instance:
cpu: 2
memory: 4G

test_task:
name: "Tests / FreeBSD / "
env:
# `SHELL` environment variable is not set by default, so we explicitly set it to
# avoid failures on tests that depend on it.
SHELL: sh

tests_task:
only_if: $CIRRUS_TAG == ''
skip: "!changesInclude('.cirrus.yml', 'poetry.lock', 'pyproject.toml', 'src/**.py', 'tests/**')"
env:
# `SHELL` environment variable is not set by default, so we explicitly set it to
# avoid failures on tests that depend on it.
SHELL: sh
matrix:
- PYTHON: python3.8
- PYTHON: python3.9
- PYTHON: python3.10
- PYTHON: python3.11
install_prereqs_script:
PY:
matrix:
- 3.8
- 3.9
- 3.10
- 3.11
bootstrap_poetry_script:
- V=$(printf '%s' $PYTHON | tr -d '.[:alpha:]')
- pkg install -y python${V} py${V}-sqlite3
install_poetry_script:
- POETRY_HOME=/opt/poetry
- $PYTHON -m venv $POETRY_HOME
- $POETRY_HOME/bin/pip install --upgrade pip setuptools wheel
- $POETRY_HOME/bin/pip install poetry
- echo "PATH=$POETRY_HOME/bin:$PATH" >> $CIRRUS_ENV
install_and_test_script:
- poetry install
- poetry run pytest --junitxml=junit.xml -v
- pkg install -y python${V} py${V}-sqlite3 devel/py-pipx
- pipx ensurepath
- pipx install poetry
setup_environment_script:
# - ln -sf /usr/local/local/bin/python${PY} /usr/local/bin/python
- poetry install --sync
- poetry env info
- poetry show
matrix:
- name: "Tests / pytest [FreeBSD / Python ${PY}]"
pytest_script:
- poetry run pytest --integration -v --junitxml=junit.xml
- name: "Tests / mypy [FreeBSD / Python ${PY}]"
mypy_script:
- poetry run mypy
on_failure:
annotate_failure_artifacts:
path: junit.xml
Expand Down

0 comments on commit c245647

Please sign in to comment.