Skip to content

Commit

Permalink
exclude tests from testing
Browse files Browse the repository at this point in the history
Why isn't that the default?
  • Loading branch information
galenlynch committed Oct 24, 2024
1 parent 0f916fc commit a4e48d6
Showing 1 changed file with 8 additions and 22 deletions.
30 changes: 8 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,23 @@ build-backend = "setuptools.build_meta"
[project]
name = "aind-behavior-video-transformation"
description = "Generated from aind-library-template"
license = {text = "MIT"}
license = { text = "MIT" }
requires-python = ">=3.8"
authors = [
{name = "Allen Institute for Neural Dynamics"}
]
classifiers = [
"Programming Language :: Python :: 3"
]
authors = [{ name = "Allen Institute for Neural Dynamics" }]
classifiers = ["Programming Language :: Python :: 3"]
readme = "README.md"
dynamic = ["version"]

dependencies = [
'aind-data-transformation>=0.0.18'
]
dependencies = ['aind-data-transformation>=0.0.18']

[project.optional-dependencies]
dev = [
'black',
'coverage',
'flake8',
'interrogate',
'isort',
'Sphinx',
'furo'
]
dev = ['black', 'coverage', 'flake8', 'interrogate', 'isort', 'Sphinx', 'furo']

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.dynamic]
version = {attr = "aind_behavior_video_transformation.__version__"}
version = { attr = "aind_behavior_video_transformation.__version__" }

[tool.black]
line-length = 79
Expand All @@ -60,14 +46,14 @@ exclude = '''

[tool.coverage.run]
omit = ["*__init__*"]
source = ["aind_behavior_video_transformation", "tests"]
source = ["aind_behavior_video_transformation"]

[tool.coverage.report]
exclude_lines = [
"if __name__ == .__main__.:",
"from",
"import",
"pragma: no cover"
"pragma: no cover",
]
fail_under = 100

Expand Down

0 comments on commit a4e48d6

Please sign in to comment.