summaryrefslogtreecommitdiff
path: root/tests/frontend/artifact_log.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/artifact_log.py')
-rw-r--r--tests/frontend/artifact_log.py15
1 files changed, 2 insertions, 13 deletions
diff --git a/tests/frontend/artifact_log.py b/tests/frontend/artifact_log.py
index 44c35aa3d..806a3b437 100644
--- a/tests/frontend/artifact_log.py
+++ b/tests/frontend/artifact_log.py
@@ -36,15 +36,7 @@ def test_artifact_log(cli, datafiles):
result = cli.run(
project=project,
silent=True,
- args=[
- "--no-colors",
- "show",
- "--deps",
- "none",
- "--format",
- "%{full-key}",
- "target.bst",
- ],
+ args=["--no-colors", "show", "--deps", "none", "--format", "%{full-key}", "target.bst",],
)
key = result.output.strip()
@@ -89,10 +81,7 @@ def test_artifact_log_files(cli, datafiles):
assert not os.path.exists(import_bin)
# Run the command and ensure the file now exists
- result = cli.run(
- project=project,
- args=["artifact", "log", "--out", logfiles, "target.bst", "import-bin.bst"],
- )
+ result = cli.run(project=project, args=["artifact", "log", "--out", logfiles, "target.bst", "import-bin.bst"],)
assert result.exit_code == 0
assert os.path.exists(logfiles)
assert os.path.exists(target)