You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by no...@apache.org on 2020/12/29 12:24:35 UTC

[buildstream] 10/12: tests: Move integration.bst to subdirectory

This is an automated email from the ASF dual-hosted git repository.

not-in-ldap pushed a commit to branch richardmaw/shell-multi-stage
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 2441ab395d973ef760dbf9e7c68f646778cea0a4
Author: Richard Maw <ri...@codethink.co.uk>
AuthorDate: Mon Oct 29 16:44:28 2018 +0000

    tests: Move integration.bst to subdirectory
---
 tests/integration/project/elements/{ => shell}/integration.bst | 0
 tests/integration/shell.py                                     | 3 ++-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/integration/project/elements/integration.bst b/tests/integration/project/elements/shell/integration.bst
similarity index 100%
rename from tests/integration/project/elements/integration.bst
rename to tests/integration/project/elements/shell/integration.bst
diff --git a/tests/integration/shell.py b/tests/integration/shell.py
index 68535bf..d4e672a 100644
--- a/tests/integration/shell.py
+++ b/tests/integration/shell.py
@@ -345,11 +345,12 @@ def test_sysroot(cli, tmpdir, datafiles):
 
 
 # Test system integration commands can access devices in /dev
+@pytest.mark.integration
 @pytest.mark.datafiles(DATA_DIR)
 @pytest.mark.skipif(IS_LINUX and not HAVE_BWRAP, reason='Only available with bubblewrap on Linux')
 def test_integration_devices(cli, tmpdir, datafiles):
     project = os.path.join(datafiles.dirname, datafiles.basename)
-    element_name = 'integration.bst'
+    element_name = 'shell/integration.bst'
 
     result = execute_shell(cli, project, ["true"], element=element_name)
     assert result.exit_code == 0