This is an automated email from the ASF dual-hosted git repository. not-in-ldap pushed a commit to branch tlater/buildbox-run-userchroot in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 1590e07c012236ca39738b64ac63454e9b69a6a1 Author: Jürg Billeter <[email protected]> AuthorDate: Tue Nov 26 10:40:34 2019 +0100 tests: source_determinism.py: Skip flaky test with buildbox-run The tests are flaky due to non-deterministic timestamps in the output of `ls -l`. See https://gitlab.com/BuildStream/buildstream/issues/1218 --- src/buildstream/testing/_sourcetests/source_determinism.py | 4 ++++ tests/integration/source-determinism.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/src/buildstream/testing/_sourcetests/source_determinism.py b/src/buildstream/testing/_sourcetests/source_determinism.py index d51d0e5..ed00c71 100644 --- a/src/buildstream/testing/_sourcetests/source_determinism.py +++ b/src/buildstream/testing/_sourcetests/source_determinism.py @@ -50,6 +50,10 @@ def create_test_directory(*path, mode=0o644): @pytest.mark.integration @pytest.mark.datafiles(DATA_DIR) @pytest.mark.skipif(not HAVE_SANDBOX, reason="Only available with a functioning sandbox") [email protected]( + HAVE_SANDBOX == "buildbox-run" and CASD_SEPARATE_USER, + reason="Flaky due to timestamps: https://gitlab.com/BuildStream/buildstream/issues/1218", +) def test_deterministic_source_umask(cli, tmpdir, datafiles, kind): project = str(datafiles) element_name = "list.bst" diff --git a/tests/integration/source-determinism.py b/tests/integration/source-determinism.py index 1455975..3555881 100644 --- a/tests/integration/source-determinism.py +++ b/tests/integration/source-determinism.py @@ -29,6 +29,10 @@ def create_test_directory(*path, mode=0o644): @pytest.mark.integration @pytest.mark.datafiles(DATA_DIR) @pytest.mark.skipif(not HAVE_SANDBOX, reason="Only available with a functioning sandbox") [email protected]( + HAVE_SANDBOX == "buildbox-run" and CASD_SEPARATE_USER, + reason="Flaky due to timestamps: https://gitlab.com/BuildStream/buildstream/issues/1218", +) def test_deterministic_source_local(cli, tmpdir, datafiles): """Only user rights should be considered for local source. """
