summaryrefslogtreecommitdiff
path: root/src/buildstream/testing/_sourcetests/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/testing/_sourcetests/utils.py')
-rw-r--r--src/buildstream/testing/_sourcetests/utils.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/buildstream/testing/_sourcetests/utils.py b/src/buildstream/testing/_sourcetests/utils.py
index ca245a57d..1ceefa3ce 100644
--- a/src/buildstream/testing/_sourcetests/utils.py
+++ b/src/buildstream/testing/_sourcetests/utils.py
@@ -28,10 +28,7 @@ try:
import pytest
except ImportError:
module_name = globals()["__name__"]
- msg = (
- "Could not import pytest:\n"
- "To use the {} module, you must have pytest installed.".format(module_name)
- )
+ msg = "Could not import pytest:\n" "To use the {} module, you must have pytest installed.".format(module_name)
raise ImportError(msg)
from buildstream import _yaml
@@ -77,11 +74,7 @@ def add_plugins_conf(project, plugin_kind):
if plugin_package is not None:
project_conf["plugins"] = [
- {
- "origin": "pip",
- "package-name": plugin_package,
- "sources": {plugin_kind: 0,},
- },
+ {"origin": "pip", "package-name": plugin_package, "sources": {plugin_kind: 0,},},
]
_yaml.roundtrip_dump(project_conf, project_conf_file)