Skip to content

Commit

Permalink
Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Oct 3, 2021
1 parent 6072503 commit ce039fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion bincrafters/generate_ci_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def _do_discard_duplicated_build_ids() -> bool:

def _get_base_config(recipe_directory: str, platform: str, split_by_build_types: bool, build_set: str = "full", recipe_type: str = ""):
if recipe_type == "":
if _do_discard_duplicated_build_ids:
if _do_discard_duplicated_build_ids():
cwd = os.getcwd()
os.chdir(recipe_directory)
recipe_type = autodetect()
Expand Down
9 changes: 0 additions & 9 deletions tests/test_package_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,6 @@ def test_build_template_installer(set_installer_only_recipe):
def test_build_header_only(set_header_only_recipe):
builder = build_autodetect._get_builder()
for settings, options, env_vars, build_requires, reference in builder.items:
from bincrafters.build_shared import printer
import pprint
pprint.pprint("options from header_only:")
pprint.pprint(options)
printer.print_message(pprint.pformat(options))
printer.print_message("test test test")
import sys
sys.stderr.flush()
sys.stdout.flush()
assert 0 == len(options)
assert 1 == len(builder.items)

Expand Down

0 comments on commit ce039fa

Please sign in to comment.