Skip to content

Commit e2301c4

Browse files
committed
Disabled test coverage for internal modules
1 parent 56bbe2c commit e2301c4

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,6 @@ dev = ["coverage", "pandas", "scikit-learn"]
3232
Homepage = "https://github.com/lucasimi/tda-mapper-python"
3333
Documentation = "https://tda-mapper.readthedocs.io"
3434
Issues = "https://github.com/lucasimi/tda-mapper-python/issues"
35+
36+
[tool.coverage.run]
37+
omit = ["**/_*.py"]

src/tdamapper/utils/_metrics.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ def manhattan(x, y):
1212
return np.linalg.norm(x - y, ord=1)
1313

1414

15-
1615
@njit(fastmath=True)
1716
def chebyshev(x, y):
1817
return np.linalg.norm(x - y, ord=np.inf)

0 commit comments

Comments
 (0)