summaryrefslogtreecommitdiff
path: root/tests/integration/workspace.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/integration/workspace.py')
-rw-r--r--tests/integration/workspace.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/integration/workspace.py b/tests/integration/workspace.py
index a2ea4841a..fab45b123 100644
--- a/tests/integration/workspace.py
+++ b/tests/integration/workspace.py
@@ -80,7 +80,7 @@ def test_workspace_commanddir(cli, datafiles):
# using the cached buildtree.
res = cli.run(
project=project,
- args=["shell", "--build", element_name, "--use-buildtree", "always", "--", "find", "..", "-mindepth", "1",],
+ args=["shell", "--build", element_name, "--use-buildtree", "--", "find", "..", "-mindepth", "1",],
)
res.assert_success()
@@ -290,7 +290,7 @@ def test_incremental_configure_commands_run_only_once(cli, datafiles):
# the configure should have been run in the sandbox, so check the buildtree
res = cli.run(
project=project,
- args=["shell", "--build", element_name, "--use-buildtree", "always", "--", "find", ".", "-mindepth", "1",],
+ args=["shell", "--build", element_name, "--use-buildtree", "--", "find", ".", "-mindepth", "1",],
)
res.assert_success()
@@ -311,7 +311,7 @@ def test_incremental_configure_commands_run_only_once(cli, datafiles):
assert not os.path.exists(os.path.join(workspace, "prepared-again"))
res = cli.run(
project=project,
- args=["shell", "--build", element_name, "--use-buildtree", "always", "--", "find", ".", "-mindepth", "1",],
+ args=["shell", "--build", element_name, "--use-buildtree", "--", "find", ".", "-mindepth", "1",],
)
res.assert_success()
@@ -382,9 +382,7 @@ def test_workspace_failed_logs(cli, datafiles):
def get_buildtree_file_contents(cli, project, element_name, filename):
- res = cli.run(
- project=project, args=["shell", "--build", element_name, "--use-buildtree", "always", "--", "cat", filename,],
- )
+ res = cli.run(project=project, args=["shell", "--build", element_name, "--use-buildtree", "--", "cat", filename,],)
res.assert_success()
return res.output