1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tests/functional/test_vcs_bazaar.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
862 B
Python
Raw Normal View History

"""
Contains functional tests of the Bazaar class.
"""
import os
import sys
from pathlib import Path
import pytest
from pip._internal.vcs.bazaar import Bazaar
from pip._internal.vcs.versioncontrol import RemoteNotFoundError
from tests.lib import PipTestEnvironment, is_bzr_installed, need_bzr
@pytest.mark.skipif(
sys.platform == "win32" or "CI" not in os.environ,
reason="Bazaar is only required under CI",
)
def test_ensure_bzr_available() -> None:
"""Make sure that bzr is available when running in CI."""
assert is_bzr_installed()
@need_bzr
def test_get_remote_url__no_remote(script: PipTestEnvironment, tmpdir: Path) -> None:
repo_dir = tmpdir / "temp-repo"
repo_dir.mkdir()
script.run("bzr", "init", os.fspath(repo_dir))
with pytest.raises(RemoteNotFoundError):
Bazaar().get_remote_url(os.fspath(repo_dir))