Skip to content

Commit

Permalink
✨ adds conf_limits_nct_minimize_scalar
Browse files Browse the repository at this point in the history
  • Loading branch information
MaaniBeigy committed Aug 16, 2024
1 parent 8273355 commit 0b1b07e
Show file tree
Hide file tree
Showing 18 changed files with 630 additions and 72 deletions.
34 changes: 30 additions & 4 deletions .logs/bandit.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"errors": [],
"generated_at": "2024-08-16T06:33:16Z",
"generated_at": "2024-08-16T09:31:50Z",
"metrics": {
"_totals": {
"CONFIDENCE.HIGH": 0,
Expand All @@ -11,7 +11,7 @@
"SEVERITY.LOW": 0,
"SEVERITY.MEDIUM": 0,
"SEVERITY.UNDEFINED": 0,
"loc": 1609,
"loc": 1740,
"nosec": 0,
"skipped_tests": 0
},
Expand Down Expand Up @@ -106,6 +106,19 @@
"nosec": 0,
"skipped_tests": 0
},
"pycvcqv\\noncentralt.py": {
"CONFIDENCE.HIGH": 0,
"CONFIDENCE.LOW": 0,
"CONFIDENCE.MEDIUM": 0,
"CONFIDENCE.UNDEFINED": 0,
"SEVERITY.HIGH": 0,
"SEVERITY.LOW": 0,
"SEVERITY.MEDIUM": 0,
"SEVERITY.UNDEFINED": 0,
"loc": 94,
"nosec": 0,
"skipped_tests": 0
},
"pycvcqv\\prepare_output.py": {
"CONFIDENCE.HIGH": 0,
"CONFIDENCE.LOW": 0,
Expand All @@ -128,7 +141,7 @@
"SEVERITY.LOW": 0,
"SEVERITY.MEDIUM": 0,
"SEVERITY.UNDEFINED": 0,
"loc": 31,
"loc": 35,
"nosec": 0,
"skipped_tests": 0
},
Expand Down Expand Up @@ -193,7 +206,7 @@
"SEVERITY.LOW": 0,
"SEVERITY.MEDIUM": 0,
"SEVERITY.UNDEFINED": 0,
"loc": 123,
"loc": 120,
"nosec": 0,
"skipped_tests": 0
},
Expand Down Expand Up @@ -222,6 +235,19 @@
"loc": 231,
"nosec": 0,
"skipped_tests": 0
},
"tests\\test_noncentralt.py": {
"CONFIDENCE.HIGH": 0,
"CONFIDENCE.LOW": 0,
"CONFIDENCE.MEDIUM": 0,
"CONFIDENCE.UNDEFINED": 0,
"SEVERITY.HIGH": 0,
"SEVERITY.LOW": 0,
"SEVERITY.MEDIUM": 0,
"SEVERITY.UNDEFINED": 0,
"loc": 36,
"nosec": 0,
"skipped_tests": 0
}
},
"results": []
Expand Down
4 changes: 2 additions & 2 deletions .logs/bandit.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Run started:2024-08-16 06:33:18.488005
Run started:2024-08-16 09:31:52.510266

Test results:
No issues identified.

Code scanned:
Total lines of code: 1609
Total lines of code: 1740
Total lines skipped (#nosec): 0
Total potential issues skipped due to specifically being disabled (e.g., #nosec BXXX): 0

Expand Down
2 changes: 1 addition & 1 deletion .logs/black.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
All done! f370
17 files would be left unchanged.
19 files would be left unchanged.
Binary file modified .logs/complexity.txt
Binary file not shown.
Binary file modified .logs/docstring.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion .logs/maintainability.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"maintainability": "91.4%"
"maintainability": "90.1%"
}
Binary file modified .logs/maintainability.txt
Binary file not shown.
Binary file modified .logs/mypy.txt
Binary file not shown.
Binary file modified .logs/pylint-log.txt
Binary file not shown.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ poetry run mypy --install-types --non-interactive pycvcqv/ tests/
7. Unit tests and coverage

```powershell
poetry run pytest --cov-report term --cov pycvcqv tests/
poetry run pytest --cov-report html --cov pycvcqv tests/
poetry run coverage-badge -o assets/images/coverage.svg -f
```

8. Lint

```powershell
poetry run pylint pycvcqv
poetry run pylint pycvcqv tests
```

9. Code-style check
Expand Down
Loading

0 comments on commit 0b1b07e

Please sign in to comment.