Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and mbargull committed Nov 10, 2023
1 parent c1c35b7 commit 91ff365
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion conda_build/cli/main_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@

from .. import api, build, source, utils
from ..conda_interface import add_parser_channels, binstar_upload, cc_conda_build
from ..config import get_channel_urls, get_or_merge_config, zstd_compression_level_default
from ..config import (
get_channel_urls,
get_or_merge_config,
zstd_compression_level_default,
)
from ..deprecations import deprecated
from ..utils import LoggingContext
from .actions import KeyValueAction
Expand Down
1 change: 0 additions & 1 deletion tests/cli/test_main_metapackage.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# SPDX-License-Identifier: BSD-3-Clause
import json
import os
import sys
from glob import glob

from conda_build.cli import main_metapackage
Expand Down
4 changes: 3 additions & 1 deletion tests/cli/test_main_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def test_render_without_channel_fails(tmp_path):
), f"Expected to get only base package name because it should not be found, but got :{required_package_string}"


def test_render_output_build_path(testing_workdir, testing_config, testing_metadata, capfd, caplog):
def test_render_output_build_path(
testing_workdir, testing_config, testing_metadata, capfd, caplog
):
api.output_yaml(testing_metadata, "meta.yaml")
args = ["--output", testing_workdir]
main_render.execute(args)
Expand Down

0 comments on commit 91ff365

Please sign in to comment.