File tree Expand file tree Collapse file tree 3 files changed +1
-18
lines changed
Expand file tree Collapse file tree 3 files changed +1
-18
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 44https://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-
197import ast
208import re
219import sys
Original file line number Diff line number Diff line change 11"""Run test coverage and analyze the results."""
22
3- __all__ = [
4- "assert_fail" ,
5- "assert_pass" ,
6- "assert_cover" ,
7- ]
8-
93import importlib
104import json
115import os
You can’t perform that action at this time.
0 commit comments