Skip to content

Commit 70d7d06

Browse files
pre-commit-ci[bot]mbargull
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c1c35b7 commit 70d7d06

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

conda_build/cli/main_build.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515

1616
from .. import api, build, source, utils
1717
from ..conda_interface import add_parser_channels, binstar_upload, cc_conda_build
18-
from ..config import get_channel_urls, get_or_merge_config, zstd_compression_level_default
18+
from ..config import (
19+
get_channel_urls,
20+
get_or_merge_config,
21+
zstd_compression_level_default,
22+
)
1923
from ..deprecations import deprecated
2024
from ..utils import LoggingContext
2125
from .actions import KeyValueAction

tests/cli/test_main_render.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ def test_render_without_channel_fails(tmp_path):
6666
), f"Expected to get only base package name because it should not be found, but got :{required_package_string}"
6767

6868

69-
def test_render_output_build_path(testing_workdir, testing_config, testing_metadata, capfd, caplog):
69+
def test_render_output_build_path(
70+
testing_workdir, testing_config, testing_metadata, capfd, caplog
71+
):
7072
api.output_yaml(testing_metadata, "meta.yaml")
7173
args = ["--output", testing_workdir]
7274
main_render.execute(args)

0 commit comments

Comments
 (0)