diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1da3616..cb6a1b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,9 +48,6 @@ jobs: # (e.g. - apt-get: gettext, etc; pip: circuitpython-build-tools, requirements.txt; etc.) run: | source actions-ci/install.sh - - name: Single Test With Print - run: | - pytest tests/test_circup.py::test_ensure_latest_bundle_no_update -rx - name: Run Test Suite run: | pytest --random-order --cov-config .coveragerc --cov-report term-missing --cov=circup diff --git a/circup/command_utils.py b/circup/command_utils.py index 4a43ce6..528ba99 100644 --- a/circup/command_utils.py +++ b/circup/command_utils.py @@ -103,15 +103,10 @@ def ensure_latest_bundle(bundle): logger.info("Checking library updates for %s.", bundle.key) tag = bundle.latest_tag do_update = False - print(f"tag: {tag} | bundle.current_tag: {bundle.current_tag}") if tag == bundle.current_tag: for platform in PLATFORMS: # missing directories (new platform added on an existing install # or side effect of pytest or network errors) - print( - f"checking dir: {bundle.lib_dir(platform)} = " - f"{os.path.isdir(bundle.lib_dir(platform))}" - ) do_update = do_update or not os.path.isdir(bundle.lib_dir(platform)) else: do_update = True