File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ classifiers =
2020packages = find_namespace:
2121packages_dir = src
2222include_package_data = True
23- python_requires = >=3.9
23+ python_requires = >=3.10
2424install_requires =
2525 PyYAML
2626
Original file line number Diff line number Diff line change 1- __version__ = "1.0.0.dev4 "
1+ __version__ = "1.0.0.dev5 "
22
33from sio3pack .exceptions import ImproperlyConfigured
44from sio3pack .files import LocalFile
55from sio3pack .packages .package import Package
6+ from sio3pack .packages .sinolpack import Sinolpack
67
78__all__ = ["from_file" , "from_db" ]
89
Original file line number Diff line number Diff line change @@ -505,10 +505,12 @@ def _process_existing_tests(self):
505505 test_id = match .group (1 )
506506 group = match .group (2 )
507507 test_ids .add ((test_id , group , test_name ))
508- elif not self .configuration .allow_unrecognized_files :
508+ elif not file . startswith ( "." ) and not self .configuration .allow_unrecognized_files :
509509 raise ProcessPackageError (
510- f"Unrecognized test in { ext } directory: { file } " ,
511- f"All files in the { ext } directory should match the pattern: " f"{ self ._get_test_regex ()} ." ,
510+ f"Unrecognized file in '{ ext } ' directory: { file } " ,
511+ f"Unrecognized file in '{ ext } ' directory ({ file } ). All files in the { ext } directory "
512+ f"should match the pattern: "
513+ f"{ self ._get_test_regex ()} ." ,
512514 )
513515 # TODO: Sort this properly
514516 test_ids = sorted (test_ids )
You can’t perform that action at this time.
0 commit comments