Skip to content

Commit a84c688

Browse files
committed
Changed source from patterns to ./
1 parent 0cdee77 commit a84c688

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ filterwarnings = [
2828
"ignore::Warning:.*test class 'TestRunner'.*"
2929
]
3030
# Adding settings from tox.ini for pytest
31-
testpaths = ["tests", "patterns"]
31+
testpaths = ["tests"]
32+
#testpaths = ["tests", "patterns"]
3233
python_files = ["test_*.py", "*_test.py"]
3334
# Enable doctest discovery in patterns directory
3435
addopts = "--doctest-modules --randomly-seed=1234 --cov=patterns --cov-report=term-missing"
@@ -37,7 +38,8 @@ log_level = "INFO"
3738

3839
[tool.coverage.run]
3940
branch = true
40-
source = ["patterns"]
41+
source = ["./"]
42+
#source = ["patterns"]
4143
# Ensure coverage data is collected properly
4244
relative_files = true
4345
parallel = true

0 commit comments

Comments
 (0)