Skip to content

Commit

Permalink
Cleanup configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
jstvz committed Nov 12, 2024
1 parent 98a0f95 commit e8552aa
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 28 deletions.
15 changes: 0 additions & 15 deletions .coveragerc

This file was deleted.

6 changes: 0 additions & 6 deletions .isort.cfg

This file was deleted.

4 changes: 0 additions & 4 deletions .pyup.yml

This file was deleted.

26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,28 @@ exclude = ["snowfakery/docs", "snowfakery/docs/**/*"]
[tool.hatch.build.targets.wheel]
exclude = ["*.sql", "*.zip"]

[tool.coverage.run]
source = ["snowfakery"]
omit = ["snowfakery/standard_plugins/statistical_distributions.py"]

[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"@abstract",
"raise NotImplementedError",
"raise AssertionError",
"def __repr__",
"def __str__",
"if T.TYPE_CHECKING",
"if TYPE_CHECKING",
]

[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3

[tool.pyright]
include = [
"snowfakery/utils/*",
Expand All @@ -98,3 +120,7 @@ include = [
"snowfakery/object_rows.py",
"snowfakery/standard_plugins/Schedule.py",
]

[tool.pytest.ini_options]
testpaths = "tests"
addopts = "-p pytest_snowfakery.salesforce_cci_pytest_plugin"
3 changes: 0 additions & 3 deletions pytest.ini

This file was deleted.

0 comments on commit e8552aa

Please sign in to comment.