Small fixes to test cases
This commit is contained in:
20
README.md
20
README.md
@@ -91,7 +91,7 @@ Below is an example DAG Run submission:
|
||||
"task_one": {
|
||||
"job": {
|
||||
"command": [
|
||||
"/usr/bin/touch",
|
||||
"/bin/touch",
|
||||
"/tmp/somefile"
|
||||
]
|
||||
},
|
||||
@@ -101,7 +101,7 @@ Below is an example DAG Run submission:
|
||||
"task_two": {
|
||||
"job": {
|
||||
"command": [
|
||||
"/usr/bin/touch",
|
||||
"/bin/touch",
|
||||
"/tmp/someotherfile"
|
||||
]
|
||||
},
|
||||
@@ -133,7 +133,7 @@ For instance:
|
||||
"task_one": {
|
||||
"job": {
|
||||
"command": [
|
||||
"/usr/bin/touch",
|
||||
"/bin/touch",
|
||||
"{{DIRECTORY}}/{{FILE}}"
|
||||
]
|
||||
},
|
||||
@@ -167,7 +167,7 @@ Example:
|
||||
"populate_inputs": {
|
||||
"job": {
|
||||
"command": [
|
||||
"/usr/bin/touch",
|
||||
"/bin/touch",
|
||||
"{{DIRECTORY}}/{{FILE}}"
|
||||
]
|
||||
}
|
||||
@@ -346,8 +346,8 @@ and capture output.
|
||||
|
||||
| Field | Sample | Description |
|
||||
|---------|--------|--------------|
|
||||
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run |
|
||||
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| command | `[ "/bin/echo", "param1" ]` | The command to run |
|
||||
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
|
||||
|
||||
Slurm Executor (SlurmTaskExecutor)
|
||||
@@ -361,8 +361,8 @@ Required `job` config values:
|
||||
|
||||
| Field | Sample | Description |
|
||||
|---------|--------|--------------|
|
||||
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run on a slurm host |
|
||||
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| command | `[ "/bin/echo", "param1" ]` | The command to run on a slurm host |
|
||||
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
|
||||
| minCPUs | `"1"` | Minimum number of CPUs required |
|
||||
| minMemoryMB | `"1"` | Minimum memory required, in MB |
|
||||
@@ -394,8 +394,8 @@ Enforcement via cgroups is planned.
|
||||
|
||||
| Field | Sample | Description |
|
||||
|---------|--------|--------------|
|
||||
| command | `[ "/usr/bin/echo", "param1" ]` | The command to run |
|
||||
| commandString | `"/usr/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| command | `[ "/bin/echo", "param1" ]` | The command to run |
|
||||
| commandString | `"/bin/echo param1"` | The command to run as a string. Quoted args are properly handled. |
|
||||
| environment | `[ "DATE=2021-05-03" ]` | Environment variables to set for script |
|
||||
| cores | "1" | Number of cores required by the task |
|
||||
| memoryMB | "100" | Amount of memory (RSS) required by the task, in MB |
|
||||
|
||||
Reference in New Issue
Block a user