Skip to content

Commit 5e6c6bc

Browse files
committed
Core class fully covered but non-functional. Need to update other pieces
1 parent 8f0b232 commit 5e6c6bc

File tree

15 files changed

+2259
-496
lines changed

15 files changed

+2259
-496
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ markdown_security_temp.md
1919
*.pyc
2020
test.py
2121
*.cpython-312.pyc`
22-
file_generator.py
22+
file_generator.py
23+
.coverage
24+
.env.local

pyproject.toml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,7 @@ include = [
5959
[tool.setuptools.dynamic]
6060
version = {attr = "socketsecurity.__version__"}
6161

62-
[tool.pytest.ini_options]
63-
minversion = "7.0"
64-
addopts = "-ra -q --cov=socketsecurity --cov-report=term-missing"
65-
testpaths = [
66-
"tests",
67-
]
62+
6863
pythonpath = "."
6964

7065
[tool.coverage.run]

pytest.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[pytest]
2-
; addopts = -v --no-cov --capture=no
3-
addopts = -v --no-cov --tb=short -ra
2+
testpaths = tests/unit
3+
addopts = -vv --no-cov --tb=short -ra
4+
python_files = test_*.py

0 commit comments

Comments
 (0)