Skip to content

Commit ca416e3

Browse files
committed
Remove __all__ in audit.py and coverage.py
1 parent ca7e0b7 commit ca416e3

File tree

3 files changed

+1
-18
lines changed

3 files changed

+1
-18
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121
### Removed
2222

2323
- remove_comments.py -- now in audit.py
24+
- `__all__` in audit.py and coverage.py
2425

2526

2627
## [1.3.0] - 2025-09-17

jmu_pytest_utils/audit.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,6 @@
44
https://saligrama.io/blog/gradescope-autograder-security/
55
"""
66

7-
__all__ = [
8-
"assert_no_if",
9-
"assert_no_for",
10-
"assert_no_while",
11-
"assert_no_loops",
12-
"count_calls",
13-
"count_comments",
14-
"count_nodes",
15-
"count_regex_matches",
16-
"get_source_code",
17-
]
18-
197
import ast
208
import re
219
import sys

jmu_pytest_utils/coverage.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
"""Run test coverage and analyze the results."""
22

3-
__all__ = [
4-
"assert_fail",
5-
"assert_pass",
6-
"assert_cover",
7-
]
8-
93
import importlib
104
import json
115
import os

0 commit comments

Comments
 (0)