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 =
20
20
packages = find_namespace:
21
21
packages_dir = src
22
22
include_package_data = True
23
- python_requires = >=3.9
23
+ python_requires = >=3.10
24
24
install_requires =
25
25
PyYAML
26
26
Original file line number Diff line number Diff line change 1
- __version__ = "1.0.0.dev4 "
1
+ __version__ = "1.0.0.dev5 "
2
2
3
3
from sio3pack .exceptions import ImproperlyConfigured
4
4
from sio3pack .files import LocalFile
5
5
from sio3pack .packages .package import Package
6
+ from sio3pack .packages .sinolpack import Sinolpack
6
7
7
8
__all__ = ["from_file" , "from_db" ]
8
9
Original file line number Diff line number Diff line change @@ -505,10 +505,12 @@ def _process_existing_tests(self):
505
505
test_id = match .group (1 )
506
506
group = match .group (2 )
507
507
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 :
509
509
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 ()} ." ,
512
514
)
513
515
# TODO: Sort this properly
514
516
test_ids = sorted (test_ids )
You can’t perform that action at this time.
0 commit comments