File tree 6 files changed +19
-7
lines changed
6 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Build and upload to PyPI
3
3
on :
4
4
workflow_dispatch :
5
5
pull_request :
6
+ paths :
7
+ - ' .github/workflows/deploy.yml'
6
8
push :
7
9
branches :
8
10
- main
Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
conda :
14
- name : Conda ${{ matrix.python-version }} - ${{ matrix.os }}
14
+ name : Conda Python ${{ matrix.python-version }}, SIDX-${{ matrix.sidx-version }}, ${{ matrix.os }}
15
15
defaults :
16
16
run :
17
17
shell : bash -l {0}
25
25
sidx-version : ['1.8.5', '2.1.0']
26
26
exclude :
27
27
- os : ' macos-latest'
28
- - sidx-version : ' 1.8.5'
28
+ sidx-version : ' 1.8.5'
29
29
30
30
steps :
31
31
- uses : actions/checkout@v4
36
36
python-version : ${{ matrix.python-version }}
37
37
38
38
- 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
40
40
41
41
- name : Install
42
42
run : pip install -e .
Original file line number Diff line number Diff line change @@ -95,6 +95,11 @@ exclude_lines = [
95
95
" @overload" ,
96
96
]
97
97
98
+ [tool .pytest .ini_options ]
99
+ minversion = " 6.0"
100
+ addopts = " --import-mode=importlib"
101
+ testpaths = [" tests" ]
102
+
98
103
[tool .ruff .lint ]
99
104
select = [
100
105
" E" , " W" , # pycodestyle
Original file line number Diff line number Diff line change
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 ]))
Original file line number Diff line number Diff line change 8
8
import py
9
9
import pytest
10
10
11
- import rtree
11
+ from . common import sidx_version_string
12
12
13
13
data_files = ["boxes_15x15.data" ]
14
14
@@ -25,7 +25,7 @@ def temporary_working_directory(tmpdir: py.path.local) -> Iterator[None]:
25
25
def pytest_report_header (config ):
26
26
"""Header for pytest."""
27
27
vers = [
28
- f"SIDX version: { rtree . core . rt . SIDX_Version (). decode () } " ,
28
+ f"SIDX version: { sidx_version_string } " ,
29
29
f"NumPy version: { numpy .__version__ } " ,
30
30
]
31
31
return "\n " .join (vers )
Original file line number Diff line number Diff line change @@ -12,5 +12,4 @@ install_command =
12
12
python -I -m pip install --only-binary =:all: {opts} {packages}
13
13
ignore_errors = True
14
14
ignore_outcome = True
15
- commands =
16
- pytest --import-mode =importlib {posargs:tests}
15
+ commands = pytest
You can’t perform that action at this time.
0 commit comments