summaryrefslogtreecommitdiff
path: root/tests/sourcecache/config.py
diff options
context:
space:
mode:
authorChandan Singh <csingh43@bloomberg.net>2019-11-11 17:07:09 +0000
committerChandan Singh <chandan@chandansingh.net>2019-11-14 21:21:06 +0000
commit122177153b14664a0e4fed85aa4f22b87cfabf56 (patch)
tree032c2e46825af91f6fe27f22b5b567eea2b7935d /tests/sourcecache/config.py
parenta3ee349558f36a220f79665873b36c1b0f990c8e (diff)
downloadbuildstream-122177153b14664a0e4fed85aa4f22b87cfabf56.tar.gz
Reformat code using Black
As discussed over the mailing list, reformat code using Black. This is a one-off change to reformat all our codebase. Moving forward, we shouldn't expect such blanket reformats. Rather, we expect each change to already comply with the Black formatting style.
Diffstat (limited to 'tests/sourcecache/config.py')
-rw-r--r--tests/sourcecache/config.py20
1 files changed, 6 insertions, 14 deletions
diff --git a/tests/sourcecache/config.py b/tests/sourcecache/config.py
index 2ab11e9f9..9233e9f44 100644
--- a/tests/sourcecache/config.py
+++ b/tests/sourcecache/config.py
@@ -36,27 +36,19 @@ DATA_DIR = os.path.dirname(os.path.realpath(__file__))
# without specifying its counterpart, we get a comprehensive LoadError
# instead of an unhandled exception.
@pytest.mark.datafiles(DATA_DIR)
-@pytest.mark.parametrize('config_key, config_value', [
- ('client-cert', 'client.crt'),
- ('client-key', 'client.key')
-])
+@pytest.mark.parametrize("config_key, config_value", [("client-cert", "client.crt"), ("client-key", "client.key")])
def test_missing_certs(cli, datafiles, config_key, config_value):
- project = os.path.join(datafiles.dirname, datafiles.basename, 'missing-certs')
+ project = os.path.join(datafiles.dirname, datafiles.basename, "missing-certs")
project_conf = {
- 'name': 'test',
-
- 'source-caches': {
- 'url': 'https://cache.example.com:12345',
- 'push': 'true',
- config_key: config_value
- }
+ "name": "test",
+ "source-caches": {"url": "https://cache.example.com:12345", "push": "true", config_key: config_value},
}
- project_conf_file = os.path.join(project, 'project.conf')
+ project_conf_file = os.path.join(project, "project.conf")
_yaml.roundtrip_dump(project_conf, project_conf_file)
# Use `pull` here to ensure we try to initialize the remotes, triggering the error
#
# This does not happen for a simple `bst show`.
- result = cli.run(project=project, args=['source', 'fetch', 'element.bst'])
+ result = cli.run(project=project, args=["source", "fetch", "element.bst"])
result.assert_main_error(ErrorDomain.LOAD, LoadErrorReason.INVALID_DATA)