diff options
author | Jürg Billeter <j@bitron.ch> | 2019-08-07 15:03:22 +0200 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2019-08-20 08:09:52 +0200 |
commit | 7b546e3d4873a71e9e8d717cba3d4271e887c007 (patch) | |
tree | 4fde1c37097bce0df1c0b818ff3d7e95bd565b18 /tests | |
parent | 0044e56bbd0f2f3b5c210fd3c04cb5adc7dbcdc6 (diff) | |
download | buildstream-7b546e3d4873a71e9e8d717cba3d4271e887c007.tar.gz |
tests/artifactcache/expiry.py: Limit to single fetcher
Parallel fetching leads to sporadic test failures due to scheduling
differences.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/artifactcache/expiry.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/artifactcache/expiry.py b/tests/artifactcache/expiry.py index 0913b569f..189bbd21c 100644 --- a/tests/artifactcache/expiry.py +++ b/tests/artifactcache/expiry.py @@ -214,6 +214,7 @@ def test_never_delete_required(cli, datafiles): 'quota': 10000000 }, 'scheduler': { + 'fetchers': 1, 'builders': 1 } }) @@ -266,6 +267,7 @@ def test_never_delete_required_track(cli, datafiles): 'quota': 10000000 }, 'scheduler': { + 'fetchers': 1, 'builders': 1 } }) |