summaryrefslogtreecommitdiff
path: root/tests/frontend/artifact.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/artifact.py')
-rw-r--r--tests/frontend/artifact.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/frontend/artifact.py b/tests/frontend/artifact.py
index eb187a168..177be8c30 100644
--- a/tests/frontend/artifact.py
+++ b/tests/frontend/artifact.py
@@ -56,6 +56,9 @@ def test_artifact_log(cli, datafiles):
assert result.exit_code == 0
log = result.output
+ # Assert that there actually was a log file
+ assert log != ''
+
# Read the log via the key
result = cli.run(project=project, args=['artifact', 'log', 'test/target/' + key])
assert result.exit_code == 0