- Unit tests are fixed
This commit is contained in:
parent
de53dd0bbd
commit
dff346eedb
@ -12,6 +12,9 @@ import createrepo_c as cr
|
|||||||
from typing.io import BinaryIO
|
from typing.io import BinaryIO
|
||||||
|
|
||||||
|
|
||||||
|
EMPTY_FILE = '.empty'
|
||||||
|
|
||||||
|
|
||||||
def _is_compressed_file(first_two_bytes: bytes, initial_bytes: bytes):
|
def _is_compressed_file(first_two_bytes: bytes, initial_bytes: bytes):
|
||||||
return binascii.hexlify(first_two_bytes) == initial_bytes
|
return binascii.hexlify(first_two_bytes) == initial_bytes
|
||||||
|
|
||||||
@ -67,7 +70,7 @@ def collect_modules(modules_paths: List[BinaryIO], target_dir: str):
|
|||||||
os.makedirs(module_defaults_path, exist_ok=True)
|
os.makedirs(module_defaults_path, exist_ok=True)
|
||||||
# Defaults modules can be empty, but pungi detects
|
# Defaults modules can be empty, but pungi detects
|
||||||
# empty folder while copying and raises the exception in this case
|
# empty folder while copying and raises the exception in this case
|
||||||
Path(os.path.join(module_defaults_path, '.empty')).touch()
|
Path(os.path.join(module_defaults_path, EMPTY_FILE)).touch()
|
||||||
|
|
||||||
for module_file in modules_paths:
|
for module_file in modules_paths:
|
||||||
data = module_file.read()
|
data = module_file.read()
|
||||||
|
Loading…
Reference in New Issue
Block a user