diff options
author | Phil Dawson <phil.dawson@codethink.co.uk> | 2019-03-25 18:30:01 +0000 |
---|---|---|
committer | Phil Dawson <phil.dawson@codethink.co.uk> | 2019-04-12 16:06:19 +0100 |
commit | ec0f0757b4b06c0c3055c2dd1c5e6a1052ce05d5 (patch) | |
tree | 6e045d4601eb2e92c3901997a327551503a3814d /tests/testutils/repo/bzr.py | |
parent | 92c9a04747a9773c0036578db9cb3fa9acb12247 (diff) | |
download | buildstream-ec0f0757b4b06c0c3055c2dd1c5e6a1052ce05d5.tar.gz |
testutils: move repo.py into buildstream.plugintestutils
This needs to be exposed as part of the plugin author facing API so
that plugin authors can define custom repo types which will can be
passed to the set of tests which iterate over multiple source types.
Part of the work towards #944
Diffstat (limited to 'tests/testutils/repo/bzr.py')
-rw-r--r-- | tests/testutils/repo/bzr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testutils/repo/bzr.py b/tests/testutils/repo/bzr.py index 0bedb3aa7..c006c3fce 100644 --- a/tests/testutils/repo/bzr.py +++ b/tests/testutils/repo/bzr.py @@ -2,7 +2,7 @@ import os import subprocess import pytest -from .repo import Repo +from buildstream.plugintestutils import Repo from .. import site |