diff options
author | Valentin David <valentin.david@codethink.co.uk> | 2018-08-14 15:27:25 +0200 |
---|---|---|
committer | Valentin David <valentin.david@gmail.com> | 2018-08-16 13:37:06 +0000 |
commit | de73cc0b7076d5c6d60ea771a3ff388a7eb4153c (patch) | |
tree | 4f3e82f03bbb44ee2ab1c0fd45152517718c733e /tests/frontend | |
parent | 3bc8a5136dfb8bdc35dc2dbc4a3d522811e1895e (diff) | |
download | buildstream-de73cc0b7076d5c6d60ea771a3ff388a7eb4153c.tar.gz |
Fix ostree repository mirroring
Ostree mirrors were not sharing the same local repository, so it was
impossible the request refs from the right local repository when data
was fetched from a mirror rather than upstream.
Instead of having several repository with one remote each, we now
have one repository with several remotes.
This fixes #538.
Diffstat (limited to 'tests/frontend')
-rw-r--r-- | tests/frontend/mirror.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/frontend/mirror.py b/tests/frontend/mirror.py index 93e270b4d..f6031cad8 100644 --- a/tests/frontend/mirror.py +++ b/tests/frontend/mirror.py @@ -466,10 +466,6 @@ def test_mirror_track_upstream_absent(cli, tmpdir, datafiles, kind): @pytest.mark.datafiles(DATA_DIR) @pytest.mark.parametrize("kind", [(kind) for kind in ALL_REPO_KINDS]) def test_mirror_from_includes(cli, tmpdir, datafiles, kind): - if kind == 'ostree': - # FIXME: Mirroring fallback fails with ostree - pytest.skip("Bug #538 - ostree mirror fallback breaks assertion") - bin_files_path = os.path.join(str(datafiles), 'files', 'bin-files', 'usr') upstream_repodir = os.path.join(str(tmpdir), 'upstream') mirror_repodir = os.path.join(str(tmpdir), 'mirror') |