1
0

Ruff
Some checks are pending
Run Python tests (through Pytest) / Test (push) Waiting to run
Verify Python project can be installed, loaded and have version checked / Test (push) Waiting to run

This commit is contained in:
Jon Michael Aanes 2025-03-05 09:59:03 +01:00
parent aad9afb52b
commit 34270a733d
2 changed files with 22 additions and 7 deletions

View File

@ -20,17 +20,16 @@ You may need to call your formatting tool afterwards, as the converter doesn't
take formatting into account. take formatting into account.
""" """
import dataclasses
import enum import enum
import hashlib import hashlib
import re import re
import dataclasses
from ._version import __version__ from ._version import __version__
__all__ = ['__version__', 'standardize_java_text', 'NamingScheme', 'Config'] __all__ = ['__version__', 'standardize_java_text', 'NamingScheme', 'Config']
class NamingScheme(enum.Enum): class NamingScheme(enum.Enum):
PRESERVE = 'preserve' PRESERVE = 'preserve'
HASH_OF_DESC = 'hash' HASH_OF_DESC = 'hash'

View File

@ -1,7 +1,7 @@
import argparse import argparse
import pathlib import pathlib
from . import NamingScheme, standardize_java_text, Config from . import Config, NamingScheme, standardize_java_text
def test_files(repo: pathlib.Path) -> list[pathlib.Path]: def test_files(repo: pathlib.Path) -> list[pathlib.Path]:
@ -34,10 +34,26 @@ def argument_parser():
argparser = argparse.ArgumentParser() argparser = argparse.ArgumentParser()
argparser.add_argument('repo', type=pathlib.Path, help='Repository') argparser.add_argument('repo', type=pathlib.Path, help='Repository')
argparser.add_argument('-i', action='store_true', help='Write to files') argparser.add_argument('-i', action='store_true', help='Write to files')
argparser.add_argument('--javadoc', action='store_true', help='Generate Javadoc for tests') argparser.add_argument(
argparser.add_argument('--displayname', action='store_true', help='Generate DisplayName for tests') '--javadoc',
argparser.add_argument('--only-javadoc', action='store_true', help='Only change tests with an existing Javadoc') action='store_true',
argparser.add_argument('--only-displayname', action='store_true', help='Only change test with an existing DisplayName') help='Generate Javadoc for tests',
)
argparser.add_argument(
'--displayname',
action='store_true',
help='Generate DisplayName for tests',
)
argparser.add_argument(
'--only-javadoc',
action='store_true',
help='Only change tests with an existing Javadoc',
)
argparser.add_argument(
'--only-displayname',
action='store_true',
help='Only change test with an existing DisplayName',
)
argparser.add_argument( argparser.add_argument(
'--naming', '--naming',
type=NamingScheme, type=NamingScheme,