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
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,6 @@ while [[ $# -gt 0 ]]; do
esac
done

# Check if yq is installed
if ! command -v yq &>/dev/null; then
echo "Error: yq is not installed. Please install it first."
exit 1
fi

# Validate required arguments
if [ -z "$PARTITION" ] || [ -z "$SLURM_ACCOUNT" ] || [ -z "$IMAGE" ] || [ -z "$DATASET_DIR" ]; then
echo "Error: Missing required arguments"
Expand Down
1 change: 1 addition & 0 deletions tests/test_utils/python_scripts/generate_local_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def main(
f'export OUTPUT_PATH={output_path}/runs/$(python3 -c "import uuid; print(uuid.uuid4())")\n'
)
fh.write(workload.spec["script"].format(**magic_values))
fh.write("\n\necho This test wrote results into $OUTPUT_PATH\n")


if __name__ == "__main__":
Expand Down
Loading