Skip to content

Commit

Permalink
commit pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
BalzaniEdoardo committed Nov 7, 2023
1 parent 3aee269 commit cb381ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ dev = [
"flake8", # Code linter
"coverage", # Test coverage measurement
"pytest-cov", # Test coverage plugin for pytest
"statsmodels",
"scikit-learn"
"statsmodels", # Used to compare model pseudo-r2 in testing
"scikit-learn", # Testing compatibility with CV & pipelines
]
docs = [
"mkdocs", # Documentation generator
Expand Down Expand Up @@ -99,8 +99,8 @@ profile = "black"

# Configure pytest
[tool.pytest.ini_options]
addopts = "--cov=nemos" # Additional options to pass to pytest, enabling coverage for the 'nemos' package
testpaths = ["tests"] # Specify the directory where test files are located
addopts = "--cov=src"

[tool.coverage.report]
exclude_lines = [
Expand Down

0 comments on commit cb381ff

Please sign in to comment.