Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/utils/batch/batch_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ async function run(lt_config, batches, env) {
}
}
if (failed_tests.length > 0) {
console.log("retrying these failed tests "+ failed_tests)
console.log("Retrying failed tests.")
lt_config["run_settings"]["specs"]=failed_tests;
batcher
.make_batches(lt_config)
Expand Down
2 changes: 1 addition & 1 deletion commands/utils/poller/poller.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function poll_build(lt_config, session_id, env) {
console.table(status);
console.log(stats);
//Download the artefacts if downloads is passed
if (lt_config.run_settings.downloads != "") {
if (lt_config.run_settings.downloads != "" && lt_config["run_settings"]["sync"] == true) {
let args = {
user: lt_config.lambdatest_auth.username,
access_key: lt_config.lambdatest_auth.access_key,
Expand Down