0.3.0-0-pre.1
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# file: scripts/audit_rust_workspace_rules.py
|
||||
# version: 1
|
||||
# version: 2
|
||||
|
||||
"""Run all Rust normalization and games.sasedev workspace audits."""
|
||||
|
||||
@@ -20,9 +20,9 @@ def main() -> int:
|
||||
arguments = parser.parse_args()
|
||||
script_dir = pathlib.Path(__file__).resolve().parent
|
||||
commands = [
|
||||
["python3", str(script_dir / "audit_rust_general_rules.py"), "--root", arguments.root],
|
||||
["python3", str(script_dir / "audit_rust_export_completeness.py"), "--root", arguments.root],
|
||||
["python3", str(script_dir / "audit_project_workspace_rules.py"), "--root", arguments.root],
|
||||
[sys.executable, "-B", str(script_dir / "audit_rust_general_rules.py"), "--root", arguments.root],
|
||||
[sys.executable, "-B", str(script_dir / "audit_rust_export_completeness.py"), "--root", arguments.root],
|
||||
[sys.executable, "-B", str(script_dir / "audit_project_workspace_rules.py"), "--root", arguments.root],
|
||||
]
|
||||
for command in commands:
|
||||
completed = subprocess.run(command, check=False)
|
||||
|
||||
Reference in New Issue
Block a user