Skip to content

Commit

Permalink
Fixed flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
midnightercz committed Apr 26, 2024
1 parent 6821b6b commit af684eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pubtools/_quay/signer_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
from .utils.misc import (
run_entrypoint,
get_pyxis_ssl_paths,
run_in_parallel,
# run_in_parallel,
log_step,
FData,
# FData,
)
from .item_processor import SignEntry

Expand Down
7 changes: 4 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2027,9 +2027,10 @@ def fixture_run_in_parallel():

@pytest.fixture
def fixture_run_in_parallel_signer():
with mock.patch("pubtools._quay.signer_wrapper.run_in_parallel") as patched:
patched.side_effect = run_in_serial
yield patched
# with mock.patch("pubtools._quay.signer_wrapper.run_in_parallel") as patched:
# patched.side_effect = run_in_serial
# yield patched
yield None


@pytest.fixture
Expand Down

0 comments on commit af684eb

Please sign in to comment.