Open nobuto-m opened 3 years ago
It seems that this code in tests/fetch/test_bzrurl.py
:
try:
from charmhelpers.fetch import (
bzrurl,
UnhandledSource,
)
except ImportError:
bzrurl = None
UnhandledSource = None
should actually also check for NotImplementedError
.
It is fairly unusual for neither bzr not zip to be installed on the test system running the tests, but we ought to fix it.
Without installing
zip
andbzr
, we will see the following.tox -e py3