File: next_mypy.py

package info (click to toggle)
python-azure 20251014%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 766,472 kB
  • sloc: python: 6,314,744; ansic: 804; javascript: 287; makefile: 198; sh: 198; xml: 109
file content (23 lines) | stat: -rw-r--r-- 800 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import argparse

from typing import Optional, List

from .mypy import mypy


class next_mypy(mypy):
    def __init__(self):
        super().__init__()

    def register(
        self, subparsers: "argparse._SubParsersAction", parent_parsers: Optional[List[argparse.ArgumentParser]] = None
    ) -> None:
        """Register the next-mypy check. The next-mypy check installs the next version of mypy and runs mypy against the target package."""
        parents = parent_parsers or []
        p = subparsers.add_parser("next-mypy", parents=parents, help="Run the mypy check with the next version of mypy")
        p.set_defaults(func=self.run)

    def run(self, args: argparse.Namespace) -> int:
        """Run the next-mypy check command."""
        args.next = True
        return super().run(args)