Skip to content

Commit a868dba

Browse files
authored
Add spatialindex version to tests, add common pytest configuration (#360)
* Add spatialindex version to tests, add common pytest configuration * Make CI name more unique * Try to limit deploy triggers with pull requests * Fix conda sidx-version, install pip
1 parent 9553259 commit a868dba

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

.github/workflows/deploy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Build and upload to PyPI
33
on:
44
workflow_dispatch:
55
pull_request:
6+
paths:
7+
- '.github/workflows/deploy.yml'
68
push:
79
branches:
810
- main

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
conda:
14-
name: Conda ${{ matrix.python-version }} - ${{ matrix.os }}
14+
name: Conda Python ${{ matrix.python-version }}, SIDX-${{ matrix.sidx-version }}, ${{ matrix.os }}
1515
defaults:
1616
run:
1717
shell: bash -l {0}
@@ -25,7 +25,7 @@ jobs:
2525
sidx-version: ['1.8.5', '2.1.0']
2626
exclude:
2727
- os: 'macos-latest'
28-
- sidx-version: '1.8.5'
28+
sidx-version: '1.8.5'
2929

3030
steps:
3131
- uses: actions/checkout@v4
@@ -36,7 +36,7 @@ jobs:
3636
python-version: ${{ matrix.python-version }}
3737

3838
- name: Setup
39-
run: conda install -c conda-forge numpy pytest libspatialindex=${{ matrix.sidx-version }} -y
39+
run: conda install -c conda-forge pip numpy pytest libspatialindex=${{ matrix.sidx-version }} -y
4040

4141
- name: Install
4242
run: pip install -e .

pyproject.toml

+5
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ exclude_lines = [
9595
"@overload",
9696
]
9797

98+
[tool.pytest.ini_options]
99+
minversion = "6.0"
100+
addopts = "--import-mode=importlib"
101+
testpaths = ["tests"]
102+
98103
[tool.ruff.lint]
99104
select = [
100105
"E", "W", # pycodestyle

tests/common.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""Common test functions."""
2+
3+
from rtree.core import rt
4+
5+
sidx_version_string = rt.SIDX_Version().decode()
6+
sidx_version = tuple(map(int, sidx_version_string.split(".", maxsplit=3)[:3]))

tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import py
99
import pytest
1010

11-
import rtree
11+
from .common import sidx_version_string
1212

1313
data_files = ["boxes_15x15.data"]
1414

@@ -25,7 +25,7 @@ def temporary_working_directory(tmpdir: py.path.local) -> Iterator[None]:
2525
def pytest_report_header(config):
2626
"""Header for pytest."""
2727
vers = [
28-
f"SIDX version: {rtree.core.rt.SIDX_Version().decode()}",
28+
f"SIDX version: {sidx_version_string}",
2929
f"NumPy version: {numpy.__version__}",
3030
]
3131
return "\n".join(vers)

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ install_command =
1212
python -I -m pip install --only-binary=:all: {opts} {packages}
1313
ignore_errors = True
1414
ignore_outcome = True
15-
commands =
16-
pytest --import-mode=importlib {posargs:tests}
15+
commands = pytest

0 commit comments

Comments
 (0)