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
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tap.py"
version = "3.2"
version = "3.2.1"
description = "Test Anything Protocol (TAP) tools"
readme = "docs/releases.rst"
license = {text = "BSD"}
Expand Down Expand Up @@ -49,12 +49,16 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.sdist]
include = ["src/*", "docs/releases.rst", "LICENSE"]
include = [
"/src",
"/docs",
"/tests",
]
sources = ["src"]

[tool.hatch.build.targets.wheel]
include = ["src/*", "docs/releases.rst", "LICENSE"]
sources = ["src"]
packages = ["tap"]

[tool.pytest.ini_options]
pythonpath = [".", "src"]
Expand Down
2 changes: 1 addition & 1 deletion src/tap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .runner import TAPTestRunner

__all__ = ["TAPTestRunner"]
__version__ = "3.2"
__version__ = "3.2.1"
6 changes: 1 addition & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,21 @@ deps =
pyyaml
more-itertools
commands = python tests/run.py
package = editable

[testenv:runner]
commands = python tests/run.py
package = editable

[testenv:module]
commands = python -m tap
changedir = src
package = editable

[testenv:integration]
deps =
pytest
pytest-tap
commands =
pytest --tap-files --tap-outdir=results src/tap
pytest --tap-files --tap-outdir=results {envsitepackagesdir}/tap
tappy results
package = editable

[testenv:coverage]
setenv =
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading