Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ include pyproject.toml
recursive-include src *.pyx *.pyi py.typed
include extern/bs.*
include extern/bsplines.pxi
include test.py
recursive-include testdata *
recursive-include tests *
global-exclude __pycache__/* *.py[cod]
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ extinction = ["py.typed", "*.pyi"]
[tool.setuptools.exclude-package-data]
extinction = ["*.pyx", "*.c"]

[tool.pytest.ini_options]
testpaths = ["tests"]

[tool.cibuildwheel]
test-requires = "pytest"
test-command = "pytest {project}/test.py"
test-command = "pytest {project}/tests"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ isolated_build = true
[testenv]
passenv = HOME
deps = pytest
commands = pytest test.py
commands = pytest tests