doc-detective-common 3.1.0-dev.1 → 3.1.0-dev.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/auto-dev-release.yml +178 -0
- package/README.md +48 -0
- package/dist/schemas/config_v3.schema.json +32 -32
- package/dist/schemas/report_v3.schema.json +30 -41
- package/dist/schemas/resolvedTests_v3.schema.json +62 -73
- package/dist/schemas/spec_v3.schema.json +30 -41
- package/dist/schemas/step_v3.schema.json +15 -15
- package/dist/schemas/test_v3.schema.json +30 -41
- package/docs/auto-dev-release.md +195 -0
- package/package.json +4 -4
- package/src/schemas/output_schemas/config_v3.schema.json +32 -32
- package/src/schemas/output_schemas/report_v3.schema.json +30 -41
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +62 -73
- package/src/schemas/output_schemas/spec_v3.schema.json +30 -41
- package/src/schemas/output_schemas/step_v3.schema.json +15 -15
- package/src/schemas/output_schemas/test_v3.schema.json +30 -41
- package/src/schemas/schemas.json +199 -243
- package/src/schemas/src_schemas/config_v3.schema.json +2 -2
- package/src/schemas/src_schemas/step_v3.schema.json +1 -1
- package/src/schemas/src_schemas/test_v3.schema.json +0 -11
- package/src/validate.js +6 -48
package/src/schemas/schemas.json
CHANGED
|
@@ -379,9 +379,9 @@
|
|
|
379
379
|
"description": "Whether or not to detect steps in input files based on defined markup.",
|
|
380
380
|
"default": true
|
|
381
381
|
},
|
|
382
|
-
"
|
|
382
|
+
"allowUnsafeSteps": {
|
|
383
383
|
"type": "boolean",
|
|
384
|
-
"description": "Whether or not to run potentially unsafe
|
|
384
|
+
"description": "Whether or not to run potentially unsafe steps, such as those that might modify files or system state."
|
|
385
385
|
},
|
|
386
386
|
"logLevel": {
|
|
387
387
|
"description": "Amount of detail to output when performing an operation.",
|
|
@@ -1059,7 +1059,7 @@
|
|
|
1059
1059
|
},
|
|
1060
1060
|
"unsafe": {
|
|
1061
1061
|
"type": "boolean",
|
|
1062
|
-
"description": "Whether or not the
|
|
1062
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1063
1063
|
"default": false
|
|
1064
1064
|
},
|
|
1065
1065
|
"outputs": {
|
|
@@ -1106,7 +1106,7 @@
|
|
|
1106
1106
|
},
|
|
1107
1107
|
"unsafe": {
|
|
1108
1108
|
"type": "boolean",
|
|
1109
|
-
"description": "Whether or not the
|
|
1109
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1110
1110
|
"default": false
|
|
1111
1111
|
},
|
|
1112
1112
|
"outputs": {
|
|
@@ -1161,7 +1161,7 @@
|
|
|
1161
1161
|
},
|
|
1162
1162
|
"unsafe": {
|
|
1163
1163
|
"type": "boolean",
|
|
1164
|
-
"description": "Whether or not the
|
|
1164
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1165
1165
|
"default": false
|
|
1166
1166
|
},
|
|
1167
1167
|
"outputs": {
|
|
@@ -1372,7 +1372,7 @@
|
|
|
1372
1372
|
},
|
|
1373
1373
|
"unsafe": {
|
|
1374
1374
|
"type": "boolean",
|
|
1375
|
-
"description": "Whether or not the
|
|
1375
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1376
1376
|
"default": false
|
|
1377
1377
|
},
|
|
1378
1378
|
"outputs": {
|
|
@@ -1554,7 +1554,7 @@
|
|
|
1554
1554
|
},
|
|
1555
1555
|
"unsafe": {
|
|
1556
1556
|
"type": "boolean",
|
|
1557
|
-
"description": "Whether or not the
|
|
1557
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
1558
1558
|
"default": false
|
|
1559
1559
|
},
|
|
1560
1560
|
"outputs": {
|
|
@@ -2350,7 +2350,7 @@
|
|
|
2350
2350
|
},
|
|
2351
2351
|
"unsafe": {
|
|
2352
2352
|
"type": "boolean",
|
|
2353
|
-
"description": "Whether or not the
|
|
2353
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2354
2354
|
"default": false
|
|
2355
2355
|
},
|
|
2356
2356
|
"outputs": {
|
|
@@ -2507,7 +2507,7 @@
|
|
|
2507
2507
|
},
|
|
2508
2508
|
"unsafe": {
|
|
2509
2509
|
"type": "boolean",
|
|
2510
|
-
"description": "Whether or not the
|
|
2510
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
2511
2511
|
"default": false
|
|
2512
2512
|
},
|
|
2513
2513
|
"outputs": {
|
|
@@ -3505,7 +3505,7 @@
|
|
|
3505
3505
|
},
|
|
3506
3506
|
"unsafe": {
|
|
3507
3507
|
"type": "boolean",
|
|
3508
|
-
"description": "Whether or not the
|
|
3508
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3509
3509
|
"default": false
|
|
3510
3510
|
},
|
|
3511
3511
|
"outputs": {
|
|
@@ -3807,7 +3807,7 @@
|
|
|
3807
3807
|
},
|
|
3808
3808
|
"unsafe": {
|
|
3809
3809
|
"type": "boolean",
|
|
3810
|
-
"description": "Whether or not the
|
|
3810
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
3811
3811
|
"default": false
|
|
3812
3812
|
},
|
|
3813
3813
|
"outputs": {
|
|
@@ -4095,7 +4095,7 @@
|
|
|
4095
4095
|
},
|
|
4096
4096
|
"unsafe": {
|
|
4097
4097
|
"type": "boolean",
|
|
4098
|
-
"description": "Whether or not the
|
|
4098
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4099
4099
|
"default": false
|
|
4100
4100
|
},
|
|
4101
4101
|
"outputs": {
|
|
@@ -4311,7 +4311,7 @@
|
|
|
4311
4311
|
},
|
|
4312
4312
|
"unsafe": {
|
|
4313
4313
|
"type": "boolean",
|
|
4314
|
-
"description": "Whether or not the
|
|
4314
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4315
4315
|
"default": false
|
|
4316
4316
|
},
|
|
4317
4317
|
"outputs": {
|
|
@@ -4754,7 +4754,7 @@
|
|
|
4754
4754
|
},
|
|
4755
4755
|
"unsafe": {
|
|
4756
4756
|
"type": "boolean",
|
|
4757
|
-
"description": "Whether or not the
|
|
4757
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4758
4758
|
"default": false
|
|
4759
4759
|
},
|
|
4760
4760
|
"outputs": {
|
|
@@ -4921,7 +4921,7 @@
|
|
|
4921
4921
|
},
|
|
4922
4922
|
"unsafe": {
|
|
4923
4923
|
"type": "boolean",
|
|
4924
|
-
"description": "Whether or not the
|
|
4924
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
4925
4925
|
"default": false
|
|
4926
4926
|
},
|
|
4927
4927
|
"outputs": {
|
|
@@ -5001,7 +5001,7 @@
|
|
|
5001
5001
|
},
|
|
5002
5002
|
"unsafe": {
|
|
5003
5003
|
"type": "boolean",
|
|
5004
|
-
"description": "Whether or not the
|
|
5004
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5005
5005
|
"default": false
|
|
5006
5006
|
},
|
|
5007
5007
|
"outputs": {
|
|
@@ -5076,7 +5076,7 @@
|
|
|
5076
5076
|
},
|
|
5077
5077
|
"unsafe": {
|
|
5078
5078
|
"type": "boolean",
|
|
5079
|
-
"description": "Whether or not the
|
|
5079
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
5080
5080
|
"default": false
|
|
5081
5081
|
},
|
|
5082
5082
|
"outputs": {
|
|
@@ -6183,7 +6183,7 @@
|
|
|
6183
6183
|
},
|
|
6184
6184
|
"unsafe": {
|
|
6185
6185
|
"type": "boolean",
|
|
6186
|
-
"description": "Whether or not the
|
|
6186
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6187
6187
|
"default": false
|
|
6188
6188
|
},
|
|
6189
6189
|
"outputs": {
|
|
@@ -6230,7 +6230,7 @@
|
|
|
6230
6230
|
},
|
|
6231
6231
|
"unsafe": {
|
|
6232
6232
|
"type": "boolean",
|
|
6233
|
-
"description": "Whether or not the
|
|
6233
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6234
6234
|
"default": false
|
|
6235
6235
|
},
|
|
6236
6236
|
"outputs": {
|
|
@@ -6285,7 +6285,7 @@
|
|
|
6285
6285
|
},
|
|
6286
6286
|
"unsafe": {
|
|
6287
6287
|
"type": "boolean",
|
|
6288
|
-
"description": "Whether or not the
|
|
6288
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6289
6289
|
"default": false
|
|
6290
6290
|
},
|
|
6291
6291
|
"outputs": {
|
|
@@ -6496,7 +6496,7 @@
|
|
|
6496
6496
|
},
|
|
6497
6497
|
"unsafe": {
|
|
6498
6498
|
"type": "boolean",
|
|
6499
|
-
"description": "Whether or not the
|
|
6499
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6500
6500
|
"default": false
|
|
6501
6501
|
},
|
|
6502
6502
|
"outputs": {
|
|
@@ -6678,7 +6678,7 @@
|
|
|
6678
6678
|
},
|
|
6679
6679
|
"unsafe": {
|
|
6680
6680
|
"type": "boolean",
|
|
6681
|
-
"description": "Whether or not the
|
|
6681
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
6682
6682
|
"default": false
|
|
6683
6683
|
},
|
|
6684
6684
|
"outputs": {
|
|
@@ -7474,7 +7474,7 @@
|
|
|
7474
7474
|
},
|
|
7475
7475
|
"unsafe": {
|
|
7476
7476
|
"type": "boolean",
|
|
7477
|
-
"description": "Whether or not the
|
|
7477
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7478
7478
|
"default": false
|
|
7479
7479
|
},
|
|
7480
7480
|
"outputs": {
|
|
@@ -7631,7 +7631,7 @@
|
|
|
7631
7631
|
},
|
|
7632
7632
|
"unsafe": {
|
|
7633
7633
|
"type": "boolean",
|
|
7634
|
-
"description": "Whether or not the
|
|
7634
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
7635
7635
|
"default": false
|
|
7636
7636
|
},
|
|
7637
7637
|
"outputs": {
|
|
@@ -8629,7 +8629,7 @@
|
|
|
8629
8629
|
},
|
|
8630
8630
|
"unsafe": {
|
|
8631
8631
|
"type": "boolean",
|
|
8632
|
-
"description": "Whether or not the
|
|
8632
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8633
8633
|
"default": false
|
|
8634
8634
|
},
|
|
8635
8635
|
"outputs": {
|
|
@@ -8931,7 +8931,7 @@
|
|
|
8931
8931
|
},
|
|
8932
8932
|
"unsafe": {
|
|
8933
8933
|
"type": "boolean",
|
|
8934
|
-
"description": "Whether or not the
|
|
8934
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
8935
8935
|
"default": false
|
|
8936
8936
|
},
|
|
8937
8937
|
"outputs": {
|
|
@@ -9219,7 +9219,7 @@
|
|
|
9219
9219
|
},
|
|
9220
9220
|
"unsafe": {
|
|
9221
9221
|
"type": "boolean",
|
|
9222
|
-
"description": "Whether or not the
|
|
9222
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9223
9223
|
"default": false
|
|
9224
9224
|
},
|
|
9225
9225
|
"outputs": {
|
|
@@ -9435,7 +9435,7 @@
|
|
|
9435
9435
|
},
|
|
9436
9436
|
"unsafe": {
|
|
9437
9437
|
"type": "boolean",
|
|
9438
|
-
"description": "Whether or not the
|
|
9438
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9439
9439
|
"default": false
|
|
9440
9440
|
},
|
|
9441
9441
|
"outputs": {
|
|
@@ -9878,7 +9878,7 @@
|
|
|
9878
9878
|
},
|
|
9879
9879
|
"unsafe": {
|
|
9880
9880
|
"type": "boolean",
|
|
9881
|
-
"description": "Whether or not the
|
|
9881
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
9882
9882
|
"default": false
|
|
9883
9883
|
},
|
|
9884
9884
|
"outputs": {
|
|
@@ -10045,7 +10045,7 @@
|
|
|
10045
10045
|
},
|
|
10046
10046
|
"unsafe": {
|
|
10047
10047
|
"type": "boolean",
|
|
10048
|
-
"description": "Whether or not the
|
|
10048
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
10049
10049
|
"default": false
|
|
10050
10050
|
},
|
|
10051
10051
|
"outputs": {
|
|
@@ -10125,7 +10125,7 @@
|
|
|
10125
10125
|
},
|
|
10126
10126
|
"unsafe": {
|
|
10127
10127
|
"type": "boolean",
|
|
10128
|
-
"description": "Whether or not the
|
|
10128
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
10129
10129
|
"default": false
|
|
10130
10130
|
},
|
|
10131
10131
|
"outputs": {
|
|
@@ -10200,7 +10200,7 @@
|
|
|
10200
10200
|
},
|
|
10201
10201
|
"unsafe": {
|
|
10202
10202
|
"type": "boolean",
|
|
10203
|
-
"description": "Whether or not the
|
|
10203
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
10204
10204
|
"default": false
|
|
10205
10205
|
},
|
|
10206
10206
|
"outputs": {
|
|
@@ -13384,9 +13384,9 @@
|
|
|
13384
13384
|
"description": "Whether or not to detect steps in input files based on defined markup.",
|
|
13385
13385
|
"default": true
|
|
13386
13386
|
},
|
|
13387
|
-
"
|
|
13387
|
+
"allowUnsafeSteps": {
|
|
13388
13388
|
"type": "boolean",
|
|
13389
|
-
"description": "Whether or not to run potentially unsafe
|
|
13389
|
+
"description": "Whether or not to run potentially unsafe steps, such as those that might modify files or system state."
|
|
13390
13390
|
},
|
|
13391
13391
|
"logLevel": {
|
|
13392
13392
|
"description": "Amount of detail to output when performing an operation.",
|
|
@@ -14064,7 +14064,7 @@
|
|
|
14064
14064
|
},
|
|
14065
14065
|
"unsafe": {
|
|
14066
14066
|
"type": "boolean",
|
|
14067
|
-
"description": "Whether or not the
|
|
14067
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14068
14068
|
"default": false
|
|
14069
14069
|
},
|
|
14070
14070
|
"outputs": {
|
|
@@ -14111,7 +14111,7 @@
|
|
|
14111
14111
|
},
|
|
14112
14112
|
"unsafe": {
|
|
14113
14113
|
"type": "boolean",
|
|
14114
|
-
"description": "Whether or not the
|
|
14114
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14115
14115
|
"default": false
|
|
14116
14116
|
},
|
|
14117
14117
|
"outputs": {
|
|
@@ -14166,7 +14166,7 @@
|
|
|
14166
14166
|
},
|
|
14167
14167
|
"unsafe": {
|
|
14168
14168
|
"type": "boolean",
|
|
14169
|
-
"description": "Whether or not the
|
|
14169
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14170
14170
|
"default": false
|
|
14171
14171
|
},
|
|
14172
14172
|
"outputs": {
|
|
@@ -14377,7 +14377,7 @@
|
|
|
14377
14377
|
},
|
|
14378
14378
|
"unsafe": {
|
|
14379
14379
|
"type": "boolean",
|
|
14380
|
-
"description": "Whether or not the
|
|
14380
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14381
14381
|
"default": false
|
|
14382
14382
|
},
|
|
14383
14383
|
"outputs": {
|
|
@@ -14559,7 +14559,7 @@
|
|
|
14559
14559
|
},
|
|
14560
14560
|
"unsafe": {
|
|
14561
14561
|
"type": "boolean",
|
|
14562
|
-
"description": "Whether or not the
|
|
14562
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
14563
14563
|
"default": false
|
|
14564
14564
|
},
|
|
14565
14565
|
"outputs": {
|
|
@@ -15355,7 +15355,7 @@
|
|
|
15355
15355
|
},
|
|
15356
15356
|
"unsafe": {
|
|
15357
15357
|
"type": "boolean",
|
|
15358
|
-
"description": "Whether or not the
|
|
15358
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15359
15359
|
"default": false
|
|
15360
15360
|
},
|
|
15361
15361
|
"outputs": {
|
|
@@ -15512,7 +15512,7 @@
|
|
|
15512
15512
|
},
|
|
15513
15513
|
"unsafe": {
|
|
15514
15514
|
"type": "boolean",
|
|
15515
|
-
"description": "Whether or not the
|
|
15515
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
15516
15516
|
"default": false
|
|
15517
15517
|
},
|
|
15518
15518
|
"outputs": {
|
|
@@ -16510,7 +16510,7 @@
|
|
|
16510
16510
|
},
|
|
16511
16511
|
"unsafe": {
|
|
16512
16512
|
"type": "boolean",
|
|
16513
|
-
"description": "Whether or not the
|
|
16513
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16514
16514
|
"default": false
|
|
16515
16515
|
},
|
|
16516
16516
|
"outputs": {
|
|
@@ -16812,7 +16812,7 @@
|
|
|
16812
16812
|
},
|
|
16813
16813
|
"unsafe": {
|
|
16814
16814
|
"type": "boolean",
|
|
16815
|
-
"description": "Whether or not the
|
|
16815
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
16816
16816
|
"default": false
|
|
16817
16817
|
},
|
|
16818
16818
|
"outputs": {
|
|
@@ -17100,7 +17100,7 @@
|
|
|
17100
17100
|
},
|
|
17101
17101
|
"unsafe": {
|
|
17102
17102
|
"type": "boolean",
|
|
17103
|
-
"description": "Whether or not the
|
|
17103
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17104
17104
|
"default": false
|
|
17105
17105
|
},
|
|
17106
17106
|
"outputs": {
|
|
@@ -17316,7 +17316,7 @@
|
|
|
17316
17316
|
},
|
|
17317
17317
|
"unsafe": {
|
|
17318
17318
|
"type": "boolean",
|
|
17319
|
-
"description": "Whether or not the
|
|
17319
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17320
17320
|
"default": false
|
|
17321
17321
|
},
|
|
17322
17322
|
"outputs": {
|
|
@@ -17759,7 +17759,7 @@
|
|
|
17759
17759
|
},
|
|
17760
17760
|
"unsafe": {
|
|
17761
17761
|
"type": "boolean",
|
|
17762
|
-
"description": "Whether or not the
|
|
17762
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17763
17763
|
"default": false
|
|
17764
17764
|
},
|
|
17765
17765
|
"outputs": {
|
|
@@ -17926,7 +17926,7 @@
|
|
|
17926
17926
|
},
|
|
17927
17927
|
"unsafe": {
|
|
17928
17928
|
"type": "boolean",
|
|
17929
|
-
"description": "Whether or not the
|
|
17929
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
17930
17930
|
"default": false
|
|
17931
17931
|
},
|
|
17932
17932
|
"outputs": {
|
|
@@ -18006,7 +18006,7 @@
|
|
|
18006
18006
|
},
|
|
18007
18007
|
"unsafe": {
|
|
18008
18008
|
"type": "boolean",
|
|
18009
|
-
"description": "Whether or not the
|
|
18009
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
18010
18010
|
"default": false
|
|
18011
18011
|
},
|
|
18012
18012
|
"outputs": {
|
|
@@ -18081,7 +18081,7 @@
|
|
|
18081
18081
|
},
|
|
18082
18082
|
"unsafe": {
|
|
18083
18083
|
"type": "boolean",
|
|
18084
|
-
"description": "Whether or not the
|
|
18084
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
18085
18085
|
"default": false
|
|
18086
18086
|
},
|
|
18087
18087
|
"outputs": {
|
|
@@ -19188,7 +19188,7 @@
|
|
|
19188
19188
|
},
|
|
19189
19189
|
"unsafe": {
|
|
19190
19190
|
"type": "boolean",
|
|
19191
|
-
"description": "Whether or not the
|
|
19191
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19192
19192
|
"default": false
|
|
19193
19193
|
},
|
|
19194
19194
|
"outputs": {
|
|
@@ -19235,7 +19235,7 @@
|
|
|
19235
19235
|
},
|
|
19236
19236
|
"unsafe": {
|
|
19237
19237
|
"type": "boolean",
|
|
19238
|
-
"description": "Whether or not the
|
|
19238
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19239
19239
|
"default": false
|
|
19240
19240
|
},
|
|
19241
19241
|
"outputs": {
|
|
@@ -19290,7 +19290,7 @@
|
|
|
19290
19290
|
},
|
|
19291
19291
|
"unsafe": {
|
|
19292
19292
|
"type": "boolean",
|
|
19293
|
-
"description": "Whether or not the
|
|
19293
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19294
19294
|
"default": false
|
|
19295
19295
|
},
|
|
19296
19296
|
"outputs": {
|
|
@@ -19501,7 +19501,7 @@
|
|
|
19501
19501
|
},
|
|
19502
19502
|
"unsafe": {
|
|
19503
19503
|
"type": "boolean",
|
|
19504
|
-
"description": "Whether or not the
|
|
19504
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19505
19505
|
"default": false
|
|
19506
19506
|
},
|
|
19507
19507
|
"outputs": {
|
|
@@ -19683,7 +19683,7 @@
|
|
|
19683
19683
|
},
|
|
19684
19684
|
"unsafe": {
|
|
19685
19685
|
"type": "boolean",
|
|
19686
|
-
"description": "Whether or not the
|
|
19686
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
19687
19687
|
"default": false
|
|
19688
19688
|
},
|
|
19689
19689
|
"outputs": {
|
|
@@ -20479,7 +20479,7 @@
|
|
|
20479
20479
|
},
|
|
20480
20480
|
"unsafe": {
|
|
20481
20481
|
"type": "boolean",
|
|
20482
|
-
"description": "Whether or not the
|
|
20482
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20483
20483
|
"default": false
|
|
20484
20484
|
},
|
|
20485
20485
|
"outputs": {
|
|
@@ -20636,7 +20636,7 @@
|
|
|
20636
20636
|
},
|
|
20637
20637
|
"unsafe": {
|
|
20638
20638
|
"type": "boolean",
|
|
20639
|
-
"description": "Whether or not the
|
|
20639
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
20640
20640
|
"default": false
|
|
20641
20641
|
},
|
|
20642
20642
|
"outputs": {
|
|
@@ -21634,7 +21634,7 @@
|
|
|
21634
21634
|
},
|
|
21635
21635
|
"unsafe": {
|
|
21636
21636
|
"type": "boolean",
|
|
21637
|
-
"description": "Whether or not the
|
|
21637
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
21638
21638
|
"default": false
|
|
21639
21639
|
},
|
|
21640
21640
|
"outputs": {
|
|
@@ -21936,7 +21936,7 @@
|
|
|
21936
21936
|
},
|
|
21937
21937
|
"unsafe": {
|
|
21938
21938
|
"type": "boolean",
|
|
21939
|
-
"description": "Whether or not the
|
|
21939
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
21940
21940
|
"default": false
|
|
21941
21941
|
},
|
|
21942
21942
|
"outputs": {
|
|
@@ -22224,7 +22224,7 @@
|
|
|
22224
22224
|
},
|
|
22225
22225
|
"unsafe": {
|
|
22226
22226
|
"type": "boolean",
|
|
22227
|
-
"description": "Whether or not the
|
|
22227
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
22228
22228
|
"default": false
|
|
22229
22229
|
},
|
|
22230
22230
|
"outputs": {
|
|
@@ -22440,7 +22440,7 @@
|
|
|
22440
22440
|
},
|
|
22441
22441
|
"unsafe": {
|
|
22442
22442
|
"type": "boolean",
|
|
22443
|
-
"description": "Whether or not the
|
|
22443
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
22444
22444
|
"default": false
|
|
22445
22445
|
},
|
|
22446
22446
|
"outputs": {
|
|
@@ -22883,7 +22883,7 @@
|
|
|
22883
22883
|
},
|
|
22884
22884
|
"unsafe": {
|
|
22885
22885
|
"type": "boolean",
|
|
22886
|
-
"description": "Whether or not the
|
|
22886
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
22887
22887
|
"default": false
|
|
22888
22888
|
},
|
|
22889
22889
|
"outputs": {
|
|
@@ -23050,7 +23050,7 @@
|
|
|
23050
23050
|
},
|
|
23051
23051
|
"unsafe": {
|
|
23052
23052
|
"type": "boolean",
|
|
23053
|
-
"description": "Whether or not the
|
|
23053
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
23054
23054
|
"default": false
|
|
23055
23055
|
},
|
|
23056
23056
|
"outputs": {
|
|
@@ -23130,7 +23130,7 @@
|
|
|
23130
23130
|
},
|
|
23131
23131
|
"unsafe": {
|
|
23132
23132
|
"type": "boolean",
|
|
23133
|
-
"description": "Whether or not the
|
|
23133
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
23134
23134
|
"default": false
|
|
23135
23135
|
},
|
|
23136
23136
|
"outputs": {
|
|
@@ -23205,7 +23205,7 @@
|
|
|
23205
23205
|
},
|
|
23206
23206
|
"unsafe": {
|
|
23207
23207
|
"type": "boolean",
|
|
23208
|
-
"description": "Whether or not the
|
|
23208
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
23209
23209
|
"default": false
|
|
23210
23210
|
},
|
|
23211
23211
|
"outputs": {
|
|
@@ -24483,11 +24483,6 @@
|
|
|
24483
24483
|
"type": "string",
|
|
24484
24484
|
"description": "Path to the content that the test is associated with."
|
|
24485
24485
|
},
|
|
24486
|
-
"unsafe": {
|
|
24487
|
-
"type": "boolean",
|
|
24488
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
24489
|
-
"default": false
|
|
24490
|
-
},
|
|
24491
24486
|
"detectSteps": {
|
|
24492
24487
|
"type": "boolean",
|
|
24493
24488
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
@@ -25099,7 +25094,7 @@
|
|
|
25099
25094
|
},
|
|
25100
25095
|
"unsafe": {
|
|
25101
25096
|
"type": "boolean",
|
|
25102
|
-
"description": "Whether or not the
|
|
25097
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
25103
25098
|
"default": false
|
|
25104
25099
|
},
|
|
25105
25100
|
"outputs": {
|
|
@@ -25146,7 +25141,7 @@
|
|
|
25146
25141
|
},
|
|
25147
25142
|
"unsafe": {
|
|
25148
25143
|
"type": "boolean",
|
|
25149
|
-
"description": "Whether or not the
|
|
25144
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
25150
25145
|
"default": false
|
|
25151
25146
|
},
|
|
25152
25147
|
"outputs": {
|
|
@@ -25201,7 +25196,7 @@
|
|
|
25201
25196
|
},
|
|
25202
25197
|
"unsafe": {
|
|
25203
25198
|
"type": "boolean",
|
|
25204
|
-
"description": "Whether or not the
|
|
25199
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
25205
25200
|
"default": false
|
|
25206
25201
|
},
|
|
25207
25202
|
"outputs": {
|
|
@@ -25412,7 +25407,7 @@
|
|
|
25412
25407
|
},
|
|
25413
25408
|
"unsafe": {
|
|
25414
25409
|
"type": "boolean",
|
|
25415
|
-
"description": "Whether or not the
|
|
25410
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
25416
25411
|
"default": false
|
|
25417
25412
|
},
|
|
25418
25413
|
"outputs": {
|
|
@@ -25594,7 +25589,7 @@
|
|
|
25594
25589
|
},
|
|
25595
25590
|
"unsafe": {
|
|
25596
25591
|
"type": "boolean",
|
|
25597
|
-
"description": "Whether or not the
|
|
25592
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
25598
25593
|
"default": false
|
|
25599
25594
|
},
|
|
25600
25595
|
"outputs": {
|
|
@@ -26390,7 +26385,7 @@
|
|
|
26390
26385
|
},
|
|
26391
26386
|
"unsafe": {
|
|
26392
26387
|
"type": "boolean",
|
|
26393
|
-
"description": "Whether or not the
|
|
26388
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
26394
26389
|
"default": false
|
|
26395
26390
|
},
|
|
26396
26391
|
"outputs": {
|
|
@@ -26547,7 +26542,7 @@
|
|
|
26547
26542
|
},
|
|
26548
26543
|
"unsafe": {
|
|
26549
26544
|
"type": "boolean",
|
|
26550
|
-
"description": "Whether or not the
|
|
26545
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
26551
26546
|
"default": false
|
|
26552
26547
|
},
|
|
26553
26548
|
"outputs": {
|
|
@@ -27545,7 +27540,7 @@
|
|
|
27545
27540
|
},
|
|
27546
27541
|
"unsafe": {
|
|
27547
27542
|
"type": "boolean",
|
|
27548
|
-
"description": "Whether or not the
|
|
27543
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
27549
27544
|
"default": false
|
|
27550
27545
|
},
|
|
27551
27546
|
"outputs": {
|
|
@@ -27847,7 +27842,7 @@
|
|
|
27847
27842
|
},
|
|
27848
27843
|
"unsafe": {
|
|
27849
27844
|
"type": "boolean",
|
|
27850
|
-
"description": "Whether or not the
|
|
27845
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
27851
27846
|
"default": false
|
|
27852
27847
|
},
|
|
27853
27848
|
"outputs": {
|
|
@@ -28135,7 +28130,7 @@
|
|
|
28135
28130
|
},
|
|
28136
28131
|
"unsafe": {
|
|
28137
28132
|
"type": "boolean",
|
|
28138
|
-
"description": "Whether or not the
|
|
28133
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
28139
28134
|
"default": false
|
|
28140
28135
|
},
|
|
28141
28136
|
"outputs": {
|
|
@@ -28351,7 +28346,7 @@
|
|
|
28351
28346
|
},
|
|
28352
28347
|
"unsafe": {
|
|
28353
28348
|
"type": "boolean",
|
|
28354
|
-
"description": "Whether or not the
|
|
28349
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
28355
28350
|
"default": false
|
|
28356
28351
|
},
|
|
28357
28352
|
"outputs": {
|
|
@@ -28794,7 +28789,7 @@
|
|
|
28794
28789
|
},
|
|
28795
28790
|
"unsafe": {
|
|
28796
28791
|
"type": "boolean",
|
|
28797
|
-
"description": "Whether or not the
|
|
28792
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
28798
28793
|
"default": false
|
|
28799
28794
|
},
|
|
28800
28795
|
"outputs": {
|
|
@@ -28961,7 +28956,7 @@
|
|
|
28961
28956
|
},
|
|
28962
28957
|
"unsafe": {
|
|
28963
28958
|
"type": "boolean",
|
|
28964
|
-
"description": "Whether or not the
|
|
28959
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
28965
28960
|
"default": false
|
|
28966
28961
|
},
|
|
28967
28962
|
"outputs": {
|
|
@@ -29041,7 +29036,7 @@
|
|
|
29041
29036
|
},
|
|
29042
29037
|
"unsafe": {
|
|
29043
29038
|
"type": "boolean",
|
|
29044
|
-
"description": "Whether or not the
|
|
29039
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
29045
29040
|
"default": false
|
|
29046
29041
|
},
|
|
29047
29042
|
"outputs": {
|
|
@@ -29116,7 +29111,7 @@
|
|
|
29116
29111
|
},
|
|
29117
29112
|
"unsafe": {
|
|
29118
29113
|
"type": "boolean",
|
|
29119
|
-
"description": "Whether or not the
|
|
29114
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
29120
29115
|
"default": false
|
|
29121
29116
|
},
|
|
29122
29117
|
"outputs": {
|
|
@@ -29801,11 +29796,6 @@
|
|
|
29801
29796
|
]
|
|
29802
29797
|
}
|
|
29803
29798
|
},
|
|
29804
|
-
"unsafe": {
|
|
29805
|
-
"type": "boolean",
|
|
29806
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
29807
|
-
"default": false
|
|
29808
|
-
},
|
|
29809
29799
|
"steps": {
|
|
29810
29800
|
"description": "Steps to perform as part of the test. Performed in the sequence defined. If one or more actions fail, the test fails. By default, if a step fails, the test stops and the remaining steps are not executed.",
|
|
29811
29801
|
"type": "array",
|
|
@@ -29840,7 +29830,7 @@
|
|
|
29840
29830
|
},
|
|
29841
29831
|
"unsafe": {
|
|
29842
29832
|
"type": "boolean",
|
|
29843
|
-
"description": "Whether or not the
|
|
29833
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
29844
29834
|
"default": false
|
|
29845
29835
|
},
|
|
29846
29836
|
"outputs": {
|
|
@@ -29887,7 +29877,7 @@
|
|
|
29887
29877
|
},
|
|
29888
29878
|
"unsafe": {
|
|
29889
29879
|
"type": "boolean",
|
|
29890
|
-
"description": "Whether or not the
|
|
29880
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
29891
29881
|
"default": false
|
|
29892
29882
|
},
|
|
29893
29883
|
"outputs": {
|
|
@@ -29942,7 +29932,7 @@
|
|
|
29942
29932
|
},
|
|
29943
29933
|
"unsafe": {
|
|
29944
29934
|
"type": "boolean",
|
|
29945
|
-
"description": "Whether or not the
|
|
29935
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
29946
29936
|
"default": false
|
|
29947
29937
|
},
|
|
29948
29938
|
"outputs": {
|
|
@@ -30153,7 +30143,7 @@
|
|
|
30153
30143
|
},
|
|
30154
30144
|
"unsafe": {
|
|
30155
30145
|
"type": "boolean",
|
|
30156
|
-
"description": "Whether or not the
|
|
30146
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
30157
30147
|
"default": false
|
|
30158
30148
|
},
|
|
30159
30149
|
"outputs": {
|
|
@@ -30335,7 +30325,7 @@
|
|
|
30335
30325
|
},
|
|
30336
30326
|
"unsafe": {
|
|
30337
30327
|
"type": "boolean",
|
|
30338
|
-
"description": "Whether or not the
|
|
30328
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
30339
30329
|
"default": false
|
|
30340
30330
|
},
|
|
30341
30331
|
"outputs": {
|
|
@@ -31131,7 +31121,7 @@
|
|
|
31131
31121
|
},
|
|
31132
31122
|
"unsafe": {
|
|
31133
31123
|
"type": "boolean",
|
|
31134
|
-
"description": "Whether or not the
|
|
31124
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
31135
31125
|
"default": false
|
|
31136
31126
|
},
|
|
31137
31127
|
"outputs": {
|
|
@@ -31288,7 +31278,7 @@
|
|
|
31288
31278
|
},
|
|
31289
31279
|
"unsafe": {
|
|
31290
31280
|
"type": "boolean",
|
|
31291
|
-
"description": "Whether or not the
|
|
31281
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
31292
31282
|
"default": false
|
|
31293
31283
|
},
|
|
31294
31284
|
"outputs": {
|
|
@@ -32286,7 +32276,7 @@
|
|
|
32286
32276
|
},
|
|
32287
32277
|
"unsafe": {
|
|
32288
32278
|
"type": "boolean",
|
|
32289
|
-
"description": "Whether or not the
|
|
32279
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
32290
32280
|
"default": false
|
|
32291
32281
|
},
|
|
32292
32282
|
"outputs": {
|
|
@@ -32588,7 +32578,7 @@
|
|
|
32588
32578
|
},
|
|
32589
32579
|
"unsafe": {
|
|
32590
32580
|
"type": "boolean",
|
|
32591
|
-
"description": "Whether or not the
|
|
32581
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
32592
32582
|
"default": false
|
|
32593
32583
|
},
|
|
32594
32584
|
"outputs": {
|
|
@@ -32876,7 +32866,7 @@
|
|
|
32876
32866
|
},
|
|
32877
32867
|
"unsafe": {
|
|
32878
32868
|
"type": "boolean",
|
|
32879
|
-
"description": "Whether or not the
|
|
32869
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
32880
32870
|
"default": false
|
|
32881
32871
|
},
|
|
32882
32872
|
"outputs": {
|
|
@@ -33092,7 +33082,7 @@
|
|
|
33092
33082
|
},
|
|
33093
33083
|
"unsafe": {
|
|
33094
33084
|
"type": "boolean",
|
|
33095
|
-
"description": "Whether or not the
|
|
33085
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
33096
33086
|
"default": false
|
|
33097
33087
|
},
|
|
33098
33088
|
"outputs": {
|
|
@@ -33535,7 +33525,7 @@
|
|
|
33535
33525
|
},
|
|
33536
33526
|
"unsafe": {
|
|
33537
33527
|
"type": "boolean",
|
|
33538
|
-
"description": "Whether or not the
|
|
33528
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
33539
33529
|
"default": false
|
|
33540
33530
|
},
|
|
33541
33531
|
"outputs": {
|
|
@@ -33702,7 +33692,7 @@
|
|
|
33702
33692
|
},
|
|
33703
33693
|
"unsafe": {
|
|
33704
33694
|
"type": "boolean",
|
|
33705
|
-
"description": "Whether or not the
|
|
33695
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
33706
33696
|
"default": false
|
|
33707
33697
|
},
|
|
33708
33698
|
"outputs": {
|
|
@@ -33782,7 +33772,7 @@
|
|
|
33782
33772
|
},
|
|
33783
33773
|
"unsafe": {
|
|
33784
33774
|
"type": "boolean",
|
|
33785
|
-
"description": "Whether or not the
|
|
33775
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
33786
33776
|
"default": false
|
|
33787
33777
|
},
|
|
33788
33778
|
"outputs": {
|
|
@@ -33857,7 +33847,7 @@
|
|
|
33857
33847
|
},
|
|
33858
33848
|
"unsafe": {
|
|
33859
33849
|
"type": "boolean",
|
|
33860
|
-
"description": "Whether or not the
|
|
33850
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
33861
33851
|
"default": false
|
|
33862
33852
|
},
|
|
33863
33853
|
"outputs": {
|
|
@@ -34530,7 +34520,6 @@
|
|
|
34530
34520
|
"description": "This test includes every property across all actions.",
|
|
34531
34521
|
"before": "setup.json",
|
|
34532
34522
|
"after": "cleanup.json",
|
|
34533
|
-
"unsafe": true,
|
|
34534
34523
|
"runOn": [
|
|
34535
34524
|
{
|
|
34536
34525
|
"platforms": [
|
|
@@ -35676,11 +35665,6 @@
|
|
|
35676
35665
|
"type": "string",
|
|
35677
35666
|
"description": "Path to the content that the test is associated with."
|
|
35678
35667
|
},
|
|
35679
|
-
"unsafe": {
|
|
35680
|
-
"type": "boolean",
|
|
35681
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
35682
|
-
"default": false
|
|
35683
|
-
},
|
|
35684
35668
|
"detectSteps": {
|
|
35685
35669
|
"type": "boolean",
|
|
35686
35670
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
@@ -36292,7 +36276,7 @@
|
|
|
36292
36276
|
},
|
|
36293
36277
|
"unsafe": {
|
|
36294
36278
|
"type": "boolean",
|
|
36295
|
-
"description": "Whether or not the
|
|
36279
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
36296
36280
|
"default": false
|
|
36297
36281
|
},
|
|
36298
36282
|
"outputs": {
|
|
@@ -36339,7 +36323,7 @@
|
|
|
36339
36323
|
},
|
|
36340
36324
|
"unsafe": {
|
|
36341
36325
|
"type": "boolean",
|
|
36342
|
-
"description": "Whether or not the
|
|
36326
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
36343
36327
|
"default": false
|
|
36344
36328
|
},
|
|
36345
36329
|
"outputs": {
|
|
@@ -36394,7 +36378,7 @@
|
|
|
36394
36378
|
},
|
|
36395
36379
|
"unsafe": {
|
|
36396
36380
|
"type": "boolean",
|
|
36397
|
-
"description": "Whether or not the
|
|
36381
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
36398
36382
|
"default": false
|
|
36399
36383
|
},
|
|
36400
36384
|
"outputs": {
|
|
@@ -36605,7 +36589,7 @@
|
|
|
36605
36589
|
},
|
|
36606
36590
|
"unsafe": {
|
|
36607
36591
|
"type": "boolean",
|
|
36608
|
-
"description": "Whether or not the
|
|
36592
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
36609
36593
|
"default": false
|
|
36610
36594
|
},
|
|
36611
36595
|
"outputs": {
|
|
@@ -36787,7 +36771,7 @@
|
|
|
36787
36771
|
},
|
|
36788
36772
|
"unsafe": {
|
|
36789
36773
|
"type": "boolean",
|
|
36790
|
-
"description": "Whether or not the
|
|
36774
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
36791
36775
|
"default": false
|
|
36792
36776
|
},
|
|
36793
36777
|
"outputs": {
|
|
@@ -37583,7 +37567,7 @@
|
|
|
37583
37567
|
},
|
|
37584
37568
|
"unsafe": {
|
|
37585
37569
|
"type": "boolean",
|
|
37586
|
-
"description": "Whether or not the
|
|
37570
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
37587
37571
|
"default": false
|
|
37588
37572
|
},
|
|
37589
37573
|
"outputs": {
|
|
@@ -37740,7 +37724,7 @@
|
|
|
37740
37724
|
},
|
|
37741
37725
|
"unsafe": {
|
|
37742
37726
|
"type": "boolean",
|
|
37743
|
-
"description": "Whether or not the
|
|
37727
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
37744
37728
|
"default": false
|
|
37745
37729
|
},
|
|
37746
37730
|
"outputs": {
|
|
@@ -38738,7 +38722,7 @@
|
|
|
38738
38722
|
},
|
|
38739
38723
|
"unsafe": {
|
|
38740
38724
|
"type": "boolean",
|
|
38741
|
-
"description": "Whether or not the
|
|
38725
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
38742
38726
|
"default": false
|
|
38743
38727
|
},
|
|
38744
38728
|
"outputs": {
|
|
@@ -39040,7 +39024,7 @@
|
|
|
39040
39024
|
},
|
|
39041
39025
|
"unsafe": {
|
|
39042
39026
|
"type": "boolean",
|
|
39043
|
-
"description": "Whether or not the
|
|
39027
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
39044
39028
|
"default": false
|
|
39045
39029
|
},
|
|
39046
39030
|
"outputs": {
|
|
@@ -39328,7 +39312,7 @@
|
|
|
39328
39312
|
},
|
|
39329
39313
|
"unsafe": {
|
|
39330
39314
|
"type": "boolean",
|
|
39331
|
-
"description": "Whether or not the
|
|
39315
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
39332
39316
|
"default": false
|
|
39333
39317
|
},
|
|
39334
39318
|
"outputs": {
|
|
@@ -39544,7 +39528,7 @@
|
|
|
39544
39528
|
},
|
|
39545
39529
|
"unsafe": {
|
|
39546
39530
|
"type": "boolean",
|
|
39547
|
-
"description": "Whether or not the
|
|
39531
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
39548
39532
|
"default": false
|
|
39549
39533
|
},
|
|
39550
39534
|
"outputs": {
|
|
@@ -39987,7 +39971,7 @@
|
|
|
39987
39971
|
},
|
|
39988
39972
|
"unsafe": {
|
|
39989
39973
|
"type": "boolean",
|
|
39990
|
-
"description": "Whether or not the
|
|
39974
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
39991
39975
|
"default": false
|
|
39992
39976
|
},
|
|
39993
39977
|
"outputs": {
|
|
@@ -40154,7 +40138,7 @@
|
|
|
40154
40138
|
},
|
|
40155
40139
|
"unsafe": {
|
|
40156
40140
|
"type": "boolean",
|
|
40157
|
-
"description": "Whether or not the
|
|
40141
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
40158
40142
|
"default": false
|
|
40159
40143
|
},
|
|
40160
40144
|
"outputs": {
|
|
@@ -40234,7 +40218,7 @@
|
|
|
40234
40218
|
},
|
|
40235
40219
|
"unsafe": {
|
|
40236
40220
|
"type": "boolean",
|
|
40237
|
-
"description": "Whether or not the
|
|
40221
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
40238
40222
|
"default": false
|
|
40239
40223
|
},
|
|
40240
40224
|
"outputs": {
|
|
@@ -40309,7 +40293,7 @@
|
|
|
40309
40293
|
},
|
|
40310
40294
|
"unsafe": {
|
|
40311
40295
|
"type": "boolean",
|
|
40312
|
-
"description": "Whether or not the
|
|
40296
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
40313
40297
|
"default": false
|
|
40314
40298
|
},
|
|
40315
40299
|
"outputs": {
|
|
@@ -40994,11 +40978,6 @@
|
|
|
40994
40978
|
]
|
|
40995
40979
|
}
|
|
40996
40980
|
},
|
|
40997
|
-
"unsafe": {
|
|
40998
|
-
"type": "boolean",
|
|
40999
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
41000
|
-
"default": false
|
|
41001
|
-
},
|
|
41002
40981
|
"steps": {
|
|
41003
40982
|
"description": "Steps to perform as part of the test. Performed in the sequence defined. If one or more actions fail, the test fails. By default, if a step fails, the test stops and the remaining steps are not executed.",
|
|
41004
40983
|
"type": "array",
|
|
@@ -41033,7 +41012,7 @@
|
|
|
41033
41012
|
},
|
|
41034
41013
|
"unsafe": {
|
|
41035
41014
|
"type": "boolean",
|
|
41036
|
-
"description": "Whether or not the
|
|
41015
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
41037
41016
|
"default": false
|
|
41038
41017
|
},
|
|
41039
41018
|
"outputs": {
|
|
@@ -41080,7 +41059,7 @@
|
|
|
41080
41059
|
},
|
|
41081
41060
|
"unsafe": {
|
|
41082
41061
|
"type": "boolean",
|
|
41083
|
-
"description": "Whether or not the
|
|
41062
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
41084
41063
|
"default": false
|
|
41085
41064
|
},
|
|
41086
41065
|
"outputs": {
|
|
@@ -41135,7 +41114,7 @@
|
|
|
41135
41114
|
},
|
|
41136
41115
|
"unsafe": {
|
|
41137
41116
|
"type": "boolean",
|
|
41138
|
-
"description": "Whether or not the
|
|
41117
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
41139
41118
|
"default": false
|
|
41140
41119
|
},
|
|
41141
41120
|
"outputs": {
|
|
@@ -41346,7 +41325,7 @@
|
|
|
41346
41325
|
},
|
|
41347
41326
|
"unsafe": {
|
|
41348
41327
|
"type": "boolean",
|
|
41349
|
-
"description": "Whether or not the
|
|
41328
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
41350
41329
|
"default": false
|
|
41351
41330
|
},
|
|
41352
41331
|
"outputs": {
|
|
@@ -41528,7 +41507,7 @@
|
|
|
41528
41507
|
},
|
|
41529
41508
|
"unsafe": {
|
|
41530
41509
|
"type": "boolean",
|
|
41531
|
-
"description": "Whether or not the
|
|
41510
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
41532
41511
|
"default": false
|
|
41533
41512
|
},
|
|
41534
41513
|
"outputs": {
|
|
@@ -42324,7 +42303,7 @@
|
|
|
42324
42303
|
},
|
|
42325
42304
|
"unsafe": {
|
|
42326
42305
|
"type": "boolean",
|
|
42327
|
-
"description": "Whether or not the
|
|
42306
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
42328
42307
|
"default": false
|
|
42329
42308
|
},
|
|
42330
42309
|
"outputs": {
|
|
@@ -42481,7 +42460,7 @@
|
|
|
42481
42460
|
},
|
|
42482
42461
|
"unsafe": {
|
|
42483
42462
|
"type": "boolean",
|
|
42484
|
-
"description": "Whether or not the
|
|
42463
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
42485
42464
|
"default": false
|
|
42486
42465
|
},
|
|
42487
42466
|
"outputs": {
|
|
@@ -43479,7 +43458,7 @@
|
|
|
43479
43458
|
},
|
|
43480
43459
|
"unsafe": {
|
|
43481
43460
|
"type": "boolean",
|
|
43482
|
-
"description": "Whether or not the
|
|
43461
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
43483
43462
|
"default": false
|
|
43484
43463
|
},
|
|
43485
43464
|
"outputs": {
|
|
@@ -43781,7 +43760,7 @@
|
|
|
43781
43760
|
},
|
|
43782
43761
|
"unsafe": {
|
|
43783
43762
|
"type": "boolean",
|
|
43784
|
-
"description": "Whether or not the
|
|
43763
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
43785
43764
|
"default": false
|
|
43786
43765
|
},
|
|
43787
43766
|
"outputs": {
|
|
@@ -44069,7 +44048,7 @@
|
|
|
44069
44048
|
},
|
|
44070
44049
|
"unsafe": {
|
|
44071
44050
|
"type": "boolean",
|
|
44072
|
-
"description": "Whether or not the
|
|
44051
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
44073
44052
|
"default": false
|
|
44074
44053
|
},
|
|
44075
44054
|
"outputs": {
|
|
@@ -44285,7 +44264,7 @@
|
|
|
44285
44264
|
},
|
|
44286
44265
|
"unsafe": {
|
|
44287
44266
|
"type": "boolean",
|
|
44288
|
-
"description": "Whether or not the
|
|
44267
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
44289
44268
|
"default": false
|
|
44290
44269
|
},
|
|
44291
44270
|
"outputs": {
|
|
@@ -44728,7 +44707,7 @@
|
|
|
44728
44707
|
},
|
|
44729
44708
|
"unsafe": {
|
|
44730
44709
|
"type": "boolean",
|
|
44731
|
-
"description": "Whether or not the
|
|
44710
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
44732
44711
|
"default": false
|
|
44733
44712
|
},
|
|
44734
44713
|
"outputs": {
|
|
@@ -44895,7 +44874,7 @@
|
|
|
44895
44874
|
},
|
|
44896
44875
|
"unsafe": {
|
|
44897
44876
|
"type": "boolean",
|
|
44898
|
-
"description": "Whether or not the
|
|
44877
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
44899
44878
|
"default": false
|
|
44900
44879
|
},
|
|
44901
44880
|
"outputs": {
|
|
@@ -44975,7 +44954,7 @@
|
|
|
44975
44954
|
},
|
|
44976
44955
|
"unsafe": {
|
|
44977
44956
|
"type": "boolean",
|
|
44978
|
-
"description": "Whether or not the
|
|
44957
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
44979
44958
|
"default": false
|
|
44980
44959
|
},
|
|
44981
44960
|
"outputs": {
|
|
@@ -45050,7 +45029,7 @@
|
|
|
45050
45029
|
},
|
|
45051
45030
|
"unsafe": {
|
|
45052
45031
|
"type": "boolean",
|
|
45053
|
-
"description": "Whether or not the
|
|
45032
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
45054
45033
|
"default": false
|
|
45055
45034
|
},
|
|
45056
45035
|
"outputs": {
|
|
@@ -45723,7 +45702,6 @@
|
|
|
45723
45702
|
"description": "This test includes every property across all actions.",
|
|
45724
45703
|
"before": "setup.json",
|
|
45725
45704
|
"after": "cleanup.json",
|
|
45726
|
-
"unsafe": true,
|
|
45727
45705
|
"runOn": [
|
|
45728
45706
|
{
|
|
45729
45707
|
"platforms": [
|
|
@@ -47652,11 +47630,6 @@
|
|
|
47652
47630
|
"type": "string",
|
|
47653
47631
|
"description": "Path to the content that the test is associated with."
|
|
47654
47632
|
},
|
|
47655
|
-
"unsafe": {
|
|
47656
|
-
"type": "boolean",
|
|
47657
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
47658
|
-
"default": false
|
|
47659
|
-
},
|
|
47660
47633
|
"detectSteps": {
|
|
47661
47634
|
"type": "boolean",
|
|
47662
47635
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
@@ -48268,7 +48241,7 @@
|
|
|
48268
48241
|
},
|
|
48269
48242
|
"unsafe": {
|
|
48270
48243
|
"type": "boolean",
|
|
48271
|
-
"description": "Whether or not the
|
|
48244
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
48272
48245
|
"default": false
|
|
48273
48246
|
},
|
|
48274
48247
|
"outputs": {
|
|
@@ -48315,7 +48288,7 @@
|
|
|
48315
48288
|
},
|
|
48316
48289
|
"unsafe": {
|
|
48317
48290
|
"type": "boolean",
|
|
48318
|
-
"description": "Whether or not the
|
|
48291
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
48319
48292
|
"default": false
|
|
48320
48293
|
},
|
|
48321
48294
|
"outputs": {
|
|
@@ -48370,7 +48343,7 @@
|
|
|
48370
48343
|
},
|
|
48371
48344
|
"unsafe": {
|
|
48372
48345
|
"type": "boolean",
|
|
48373
|
-
"description": "Whether or not the
|
|
48346
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
48374
48347
|
"default": false
|
|
48375
48348
|
},
|
|
48376
48349
|
"outputs": {
|
|
@@ -48581,7 +48554,7 @@
|
|
|
48581
48554
|
},
|
|
48582
48555
|
"unsafe": {
|
|
48583
48556
|
"type": "boolean",
|
|
48584
|
-
"description": "Whether or not the
|
|
48557
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
48585
48558
|
"default": false
|
|
48586
48559
|
},
|
|
48587
48560
|
"outputs": {
|
|
@@ -48763,7 +48736,7 @@
|
|
|
48763
48736
|
},
|
|
48764
48737
|
"unsafe": {
|
|
48765
48738
|
"type": "boolean",
|
|
48766
|
-
"description": "Whether or not the
|
|
48739
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
48767
48740
|
"default": false
|
|
48768
48741
|
},
|
|
48769
48742
|
"outputs": {
|
|
@@ -49559,7 +49532,7 @@
|
|
|
49559
49532
|
},
|
|
49560
49533
|
"unsafe": {
|
|
49561
49534
|
"type": "boolean",
|
|
49562
|
-
"description": "Whether or not the
|
|
49535
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
49563
49536
|
"default": false
|
|
49564
49537
|
},
|
|
49565
49538
|
"outputs": {
|
|
@@ -49716,7 +49689,7 @@
|
|
|
49716
49689
|
},
|
|
49717
49690
|
"unsafe": {
|
|
49718
49691
|
"type": "boolean",
|
|
49719
|
-
"description": "Whether or not the
|
|
49692
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
49720
49693
|
"default": false
|
|
49721
49694
|
},
|
|
49722
49695
|
"outputs": {
|
|
@@ -50714,7 +50687,7 @@
|
|
|
50714
50687
|
},
|
|
50715
50688
|
"unsafe": {
|
|
50716
50689
|
"type": "boolean",
|
|
50717
|
-
"description": "Whether or not the
|
|
50690
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
50718
50691
|
"default": false
|
|
50719
50692
|
},
|
|
50720
50693
|
"outputs": {
|
|
@@ -51016,7 +50989,7 @@
|
|
|
51016
50989
|
},
|
|
51017
50990
|
"unsafe": {
|
|
51018
50991
|
"type": "boolean",
|
|
51019
|
-
"description": "Whether or not the
|
|
50992
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
51020
50993
|
"default": false
|
|
51021
50994
|
},
|
|
51022
50995
|
"outputs": {
|
|
@@ -51304,7 +51277,7 @@
|
|
|
51304
51277
|
},
|
|
51305
51278
|
"unsafe": {
|
|
51306
51279
|
"type": "boolean",
|
|
51307
|
-
"description": "Whether or not the
|
|
51280
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
51308
51281
|
"default": false
|
|
51309
51282
|
},
|
|
51310
51283
|
"outputs": {
|
|
@@ -51520,7 +51493,7 @@
|
|
|
51520
51493
|
},
|
|
51521
51494
|
"unsafe": {
|
|
51522
51495
|
"type": "boolean",
|
|
51523
|
-
"description": "Whether or not the
|
|
51496
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
51524
51497
|
"default": false
|
|
51525
51498
|
},
|
|
51526
51499
|
"outputs": {
|
|
@@ -51963,7 +51936,7 @@
|
|
|
51963
51936
|
},
|
|
51964
51937
|
"unsafe": {
|
|
51965
51938
|
"type": "boolean",
|
|
51966
|
-
"description": "Whether or not the
|
|
51939
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
51967
51940
|
"default": false
|
|
51968
51941
|
},
|
|
51969
51942
|
"outputs": {
|
|
@@ -52130,7 +52103,7 @@
|
|
|
52130
52103
|
},
|
|
52131
52104
|
"unsafe": {
|
|
52132
52105
|
"type": "boolean",
|
|
52133
|
-
"description": "Whether or not the
|
|
52106
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
52134
52107
|
"default": false
|
|
52135
52108
|
},
|
|
52136
52109
|
"outputs": {
|
|
@@ -52210,7 +52183,7 @@
|
|
|
52210
52183
|
},
|
|
52211
52184
|
"unsafe": {
|
|
52212
52185
|
"type": "boolean",
|
|
52213
|
-
"description": "Whether or not the
|
|
52186
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
52214
52187
|
"default": false
|
|
52215
52188
|
},
|
|
52216
52189
|
"outputs": {
|
|
@@ -52285,7 +52258,7 @@
|
|
|
52285
52258
|
},
|
|
52286
52259
|
"unsafe": {
|
|
52287
52260
|
"type": "boolean",
|
|
52288
|
-
"description": "Whether or not the
|
|
52261
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
52289
52262
|
"default": false
|
|
52290
52263
|
},
|
|
52291
52264
|
"outputs": {
|
|
@@ -52970,11 +52943,6 @@
|
|
|
52970
52943
|
]
|
|
52971
52944
|
}
|
|
52972
52945
|
},
|
|
52973
|
-
"unsafe": {
|
|
52974
|
-
"type": "boolean",
|
|
52975
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
52976
|
-
"default": false
|
|
52977
|
-
},
|
|
52978
52946
|
"steps": {
|
|
52979
52947
|
"description": "Steps to perform as part of the test. Performed in the sequence defined. If one or more actions fail, the test fails. By default, if a step fails, the test stops and the remaining steps are not executed.",
|
|
52980
52948
|
"type": "array",
|
|
@@ -53009,7 +52977,7 @@
|
|
|
53009
52977
|
},
|
|
53010
52978
|
"unsafe": {
|
|
53011
52979
|
"type": "boolean",
|
|
53012
|
-
"description": "Whether or not the
|
|
52980
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
53013
52981
|
"default": false
|
|
53014
52982
|
},
|
|
53015
52983
|
"outputs": {
|
|
@@ -53056,7 +53024,7 @@
|
|
|
53056
53024
|
},
|
|
53057
53025
|
"unsafe": {
|
|
53058
53026
|
"type": "boolean",
|
|
53059
|
-
"description": "Whether or not the
|
|
53027
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
53060
53028
|
"default": false
|
|
53061
53029
|
},
|
|
53062
53030
|
"outputs": {
|
|
@@ -53111,7 +53079,7 @@
|
|
|
53111
53079
|
},
|
|
53112
53080
|
"unsafe": {
|
|
53113
53081
|
"type": "boolean",
|
|
53114
|
-
"description": "Whether or not the
|
|
53082
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
53115
53083
|
"default": false
|
|
53116
53084
|
},
|
|
53117
53085
|
"outputs": {
|
|
@@ -53322,7 +53290,7 @@
|
|
|
53322
53290
|
},
|
|
53323
53291
|
"unsafe": {
|
|
53324
53292
|
"type": "boolean",
|
|
53325
|
-
"description": "Whether or not the
|
|
53293
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
53326
53294
|
"default": false
|
|
53327
53295
|
},
|
|
53328
53296
|
"outputs": {
|
|
@@ -53504,7 +53472,7 @@
|
|
|
53504
53472
|
},
|
|
53505
53473
|
"unsafe": {
|
|
53506
53474
|
"type": "boolean",
|
|
53507
|
-
"description": "Whether or not the
|
|
53475
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
53508
53476
|
"default": false
|
|
53509
53477
|
},
|
|
53510
53478
|
"outputs": {
|
|
@@ -54300,7 +54268,7 @@
|
|
|
54300
54268
|
},
|
|
54301
54269
|
"unsafe": {
|
|
54302
54270
|
"type": "boolean",
|
|
54303
|
-
"description": "Whether or not the
|
|
54271
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
54304
54272
|
"default": false
|
|
54305
54273
|
},
|
|
54306
54274
|
"outputs": {
|
|
@@ -54457,7 +54425,7 @@
|
|
|
54457
54425
|
},
|
|
54458
54426
|
"unsafe": {
|
|
54459
54427
|
"type": "boolean",
|
|
54460
|
-
"description": "Whether or not the
|
|
54428
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
54461
54429
|
"default": false
|
|
54462
54430
|
},
|
|
54463
54431
|
"outputs": {
|
|
@@ -55455,7 +55423,7 @@
|
|
|
55455
55423
|
},
|
|
55456
55424
|
"unsafe": {
|
|
55457
55425
|
"type": "boolean",
|
|
55458
|
-
"description": "Whether or not the
|
|
55426
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
55459
55427
|
"default": false
|
|
55460
55428
|
},
|
|
55461
55429
|
"outputs": {
|
|
@@ -55757,7 +55725,7 @@
|
|
|
55757
55725
|
},
|
|
55758
55726
|
"unsafe": {
|
|
55759
55727
|
"type": "boolean",
|
|
55760
|
-
"description": "Whether or not the
|
|
55728
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
55761
55729
|
"default": false
|
|
55762
55730
|
},
|
|
55763
55731
|
"outputs": {
|
|
@@ -56045,7 +56013,7 @@
|
|
|
56045
56013
|
},
|
|
56046
56014
|
"unsafe": {
|
|
56047
56015
|
"type": "boolean",
|
|
56048
|
-
"description": "Whether or not the
|
|
56016
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
56049
56017
|
"default": false
|
|
56050
56018
|
},
|
|
56051
56019
|
"outputs": {
|
|
@@ -56261,7 +56229,7 @@
|
|
|
56261
56229
|
},
|
|
56262
56230
|
"unsafe": {
|
|
56263
56231
|
"type": "boolean",
|
|
56264
|
-
"description": "Whether or not the
|
|
56232
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
56265
56233
|
"default": false
|
|
56266
56234
|
},
|
|
56267
56235
|
"outputs": {
|
|
@@ -56704,7 +56672,7 @@
|
|
|
56704
56672
|
},
|
|
56705
56673
|
"unsafe": {
|
|
56706
56674
|
"type": "boolean",
|
|
56707
|
-
"description": "Whether or not the
|
|
56675
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
56708
56676
|
"default": false
|
|
56709
56677
|
},
|
|
56710
56678
|
"outputs": {
|
|
@@ -56871,7 +56839,7 @@
|
|
|
56871
56839
|
},
|
|
56872
56840
|
"unsafe": {
|
|
56873
56841
|
"type": "boolean",
|
|
56874
|
-
"description": "Whether or not the
|
|
56842
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
56875
56843
|
"default": false
|
|
56876
56844
|
},
|
|
56877
56845
|
"outputs": {
|
|
@@ -56951,7 +56919,7 @@
|
|
|
56951
56919
|
},
|
|
56952
56920
|
"unsafe": {
|
|
56953
56921
|
"type": "boolean",
|
|
56954
|
-
"description": "Whether or not the
|
|
56922
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
56955
56923
|
"default": false
|
|
56956
56924
|
},
|
|
56957
56925
|
"outputs": {
|
|
@@ -57026,7 +56994,7 @@
|
|
|
57026
56994
|
},
|
|
57027
56995
|
"unsafe": {
|
|
57028
56996
|
"type": "boolean",
|
|
57029
|
-
"description": "Whether or not the
|
|
56997
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
57030
56998
|
"default": false
|
|
57031
56999
|
},
|
|
57032
57000
|
"outputs": {
|
|
@@ -57699,7 +57667,6 @@
|
|
|
57699
57667
|
"description": "This test includes every property across all actions.",
|
|
57700
57668
|
"before": "setup.json",
|
|
57701
57669
|
"after": "cleanup.json",
|
|
57702
|
-
"unsafe": true,
|
|
57703
57670
|
"runOn": [
|
|
57704
57671
|
{
|
|
57705
57672
|
"platforms": [
|
|
@@ -58026,7 +57993,7 @@
|
|
|
58026
57993
|
},
|
|
58027
57994
|
"unsafe": {
|
|
58028
57995
|
"type": "boolean",
|
|
58029
|
-
"description": "Whether or not the
|
|
57996
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
58030
57997
|
"default": false
|
|
58031
57998
|
},
|
|
58032
57999
|
"outputs": {
|
|
@@ -58073,7 +58040,7 @@
|
|
|
58073
58040
|
},
|
|
58074
58041
|
"unsafe": {
|
|
58075
58042
|
"type": "boolean",
|
|
58076
|
-
"description": "Whether or not the
|
|
58043
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
58077
58044
|
"default": false
|
|
58078
58045
|
},
|
|
58079
58046
|
"outputs": {
|
|
@@ -58128,7 +58095,7 @@
|
|
|
58128
58095
|
},
|
|
58129
58096
|
"unsafe": {
|
|
58130
58097
|
"type": "boolean",
|
|
58131
|
-
"description": "Whether or not the
|
|
58098
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
58132
58099
|
"default": false
|
|
58133
58100
|
},
|
|
58134
58101
|
"outputs": {
|
|
@@ -58339,7 +58306,7 @@
|
|
|
58339
58306
|
},
|
|
58340
58307
|
"unsafe": {
|
|
58341
58308
|
"type": "boolean",
|
|
58342
|
-
"description": "Whether or not the
|
|
58309
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
58343
58310
|
"default": false
|
|
58344
58311
|
},
|
|
58345
58312
|
"outputs": {
|
|
@@ -58521,7 +58488,7 @@
|
|
|
58521
58488
|
},
|
|
58522
58489
|
"unsafe": {
|
|
58523
58490
|
"type": "boolean",
|
|
58524
|
-
"description": "Whether or not the
|
|
58491
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
58525
58492
|
"default": false
|
|
58526
58493
|
},
|
|
58527
58494
|
"outputs": {
|
|
@@ -59317,7 +59284,7 @@
|
|
|
59317
59284
|
},
|
|
59318
59285
|
"unsafe": {
|
|
59319
59286
|
"type": "boolean",
|
|
59320
|
-
"description": "Whether or not the
|
|
59287
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
59321
59288
|
"default": false
|
|
59322
59289
|
},
|
|
59323
59290
|
"outputs": {
|
|
@@ -59474,7 +59441,7 @@
|
|
|
59474
59441
|
},
|
|
59475
59442
|
"unsafe": {
|
|
59476
59443
|
"type": "boolean",
|
|
59477
|
-
"description": "Whether or not the
|
|
59444
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
59478
59445
|
"default": false
|
|
59479
59446
|
},
|
|
59480
59447
|
"outputs": {
|
|
@@ -60472,7 +60439,7 @@
|
|
|
60472
60439
|
},
|
|
60473
60440
|
"unsafe": {
|
|
60474
60441
|
"type": "boolean",
|
|
60475
|
-
"description": "Whether or not the
|
|
60442
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
60476
60443
|
"default": false
|
|
60477
60444
|
},
|
|
60478
60445
|
"outputs": {
|
|
@@ -60774,7 +60741,7 @@
|
|
|
60774
60741
|
},
|
|
60775
60742
|
"unsafe": {
|
|
60776
60743
|
"type": "boolean",
|
|
60777
|
-
"description": "Whether or not the
|
|
60744
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
60778
60745
|
"default": false
|
|
60779
60746
|
},
|
|
60780
60747
|
"outputs": {
|
|
@@ -61062,7 +61029,7 @@
|
|
|
61062
61029
|
},
|
|
61063
61030
|
"unsafe": {
|
|
61064
61031
|
"type": "boolean",
|
|
61065
|
-
"description": "Whether or not the
|
|
61032
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
61066
61033
|
"default": false
|
|
61067
61034
|
},
|
|
61068
61035
|
"outputs": {
|
|
@@ -61278,7 +61245,7 @@
|
|
|
61278
61245
|
},
|
|
61279
61246
|
"unsafe": {
|
|
61280
61247
|
"type": "boolean",
|
|
61281
|
-
"description": "Whether or not the
|
|
61248
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
61282
61249
|
"default": false
|
|
61283
61250
|
},
|
|
61284
61251
|
"outputs": {
|
|
@@ -61721,7 +61688,7 @@
|
|
|
61721
61688
|
},
|
|
61722
61689
|
"unsafe": {
|
|
61723
61690
|
"type": "boolean",
|
|
61724
|
-
"description": "Whether or not the
|
|
61691
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
61725
61692
|
"default": false
|
|
61726
61693
|
},
|
|
61727
61694
|
"outputs": {
|
|
@@ -61888,7 +61855,7 @@
|
|
|
61888
61855
|
},
|
|
61889
61856
|
"unsafe": {
|
|
61890
61857
|
"type": "boolean",
|
|
61891
|
-
"description": "Whether or not the
|
|
61858
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
61892
61859
|
"default": false
|
|
61893
61860
|
},
|
|
61894
61861
|
"outputs": {
|
|
@@ -61968,7 +61935,7 @@
|
|
|
61968
61935
|
},
|
|
61969
61936
|
"unsafe": {
|
|
61970
61937
|
"type": "boolean",
|
|
61971
|
-
"description": "Whether or not the
|
|
61938
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
61972
61939
|
"default": false
|
|
61973
61940
|
},
|
|
61974
61941
|
"outputs": {
|
|
@@ -62043,7 +62010,7 @@
|
|
|
62043
62010
|
},
|
|
62044
62011
|
"unsafe": {
|
|
62045
62012
|
"type": "boolean",
|
|
62046
|
-
"description": "Whether or not the
|
|
62013
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
62047
62014
|
"default": false
|
|
62048
62015
|
},
|
|
62049
62016
|
"outputs": {
|
|
@@ -62506,11 +62473,6 @@
|
|
|
62506
62473
|
"type": "string",
|
|
62507
62474
|
"description": "Path to the content that the test is associated with."
|
|
62508
62475
|
},
|
|
62509
|
-
"unsafe": {
|
|
62510
|
-
"type": "boolean",
|
|
62511
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
62512
|
-
"default": false
|
|
62513
|
-
},
|
|
62514
62476
|
"detectSteps": {
|
|
62515
62477
|
"type": "boolean",
|
|
62516
62478
|
"description": "Whether or not to detect steps in input files based on markup regex.",
|
|
@@ -63122,7 +63084,7 @@
|
|
|
63122
63084
|
},
|
|
63123
63085
|
"unsafe": {
|
|
63124
63086
|
"type": "boolean",
|
|
63125
|
-
"description": "Whether or not the
|
|
63087
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
63126
63088
|
"default": false
|
|
63127
63089
|
},
|
|
63128
63090
|
"outputs": {
|
|
@@ -63169,7 +63131,7 @@
|
|
|
63169
63131
|
},
|
|
63170
63132
|
"unsafe": {
|
|
63171
63133
|
"type": "boolean",
|
|
63172
|
-
"description": "Whether or not the
|
|
63134
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
63173
63135
|
"default": false
|
|
63174
63136
|
},
|
|
63175
63137
|
"outputs": {
|
|
@@ -63224,7 +63186,7 @@
|
|
|
63224
63186
|
},
|
|
63225
63187
|
"unsafe": {
|
|
63226
63188
|
"type": "boolean",
|
|
63227
|
-
"description": "Whether or not the
|
|
63189
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
63228
63190
|
"default": false
|
|
63229
63191
|
},
|
|
63230
63192
|
"outputs": {
|
|
@@ -63435,7 +63397,7 @@
|
|
|
63435
63397
|
},
|
|
63436
63398
|
"unsafe": {
|
|
63437
63399
|
"type": "boolean",
|
|
63438
|
-
"description": "Whether or not the
|
|
63400
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
63439
63401
|
"default": false
|
|
63440
63402
|
},
|
|
63441
63403
|
"outputs": {
|
|
@@ -63617,7 +63579,7 @@
|
|
|
63617
63579
|
},
|
|
63618
63580
|
"unsafe": {
|
|
63619
63581
|
"type": "boolean",
|
|
63620
|
-
"description": "Whether or not the
|
|
63582
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
63621
63583
|
"default": false
|
|
63622
63584
|
},
|
|
63623
63585
|
"outputs": {
|
|
@@ -64413,7 +64375,7 @@
|
|
|
64413
64375
|
},
|
|
64414
64376
|
"unsafe": {
|
|
64415
64377
|
"type": "boolean",
|
|
64416
|
-
"description": "Whether or not the
|
|
64378
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
64417
64379
|
"default": false
|
|
64418
64380
|
},
|
|
64419
64381
|
"outputs": {
|
|
@@ -64570,7 +64532,7 @@
|
|
|
64570
64532
|
},
|
|
64571
64533
|
"unsafe": {
|
|
64572
64534
|
"type": "boolean",
|
|
64573
|
-
"description": "Whether or not the
|
|
64535
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
64574
64536
|
"default": false
|
|
64575
64537
|
},
|
|
64576
64538
|
"outputs": {
|
|
@@ -65568,7 +65530,7 @@
|
|
|
65568
65530
|
},
|
|
65569
65531
|
"unsafe": {
|
|
65570
65532
|
"type": "boolean",
|
|
65571
|
-
"description": "Whether or not the
|
|
65533
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
65572
65534
|
"default": false
|
|
65573
65535
|
},
|
|
65574
65536
|
"outputs": {
|
|
@@ -65870,7 +65832,7 @@
|
|
|
65870
65832
|
},
|
|
65871
65833
|
"unsafe": {
|
|
65872
65834
|
"type": "boolean",
|
|
65873
|
-
"description": "Whether or not the
|
|
65835
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
65874
65836
|
"default": false
|
|
65875
65837
|
},
|
|
65876
65838
|
"outputs": {
|
|
@@ -66158,7 +66120,7 @@
|
|
|
66158
66120
|
},
|
|
66159
66121
|
"unsafe": {
|
|
66160
66122
|
"type": "boolean",
|
|
66161
|
-
"description": "Whether or not the
|
|
66123
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
66162
66124
|
"default": false
|
|
66163
66125
|
},
|
|
66164
66126
|
"outputs": {
|
|
@@ -66374,7 +66336,7 @@
|
|
|
66374
66336
|
},
|
|
66375
66337
|
"unsafe": {
|
|
66376
66338
|
"type": "boolean",
|
|
66377
|
-
"description": "Whether or not the
|
|
66339
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
66378
66340
|
"default": false
|
|
66379
66341
|
},
|
|
66380
66342
|
"outputs": {
|
|
@@ -66817,7 +66779,7 @@
|
|
|
66817
66779
|
},
|
|
66818
66780
|
"unsafe": {
|
|
66819
66781
|
"type": "boolean",
|
|
66820
|
-
"description": "Whether or not the
|
|
66782
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
66821
66783
|
"default": false
|
|
66822
66784
|
},
|
|
66823
66785
|
"outputs": {
|
|
@@ -66984,7 +66946,7 @@
|
|
|
66984
66946
|
},
|
|
66985
66947
|
"unsafe": {
|
|
66986
66948
|
"type": "boolean",
|
|
66987
|
-
"description": "Whether or not the
|
|
66949
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
66988
66950
|
"default": false
|
|
66989
66951
|
},
|
|
66990
66952
|
"outputs": {
|
|
@@ -67064,7 +67026,7 @@
|
|
|
67064
67026
|
},
|
|
67065
67027
|
"unsafe": {
|
|
67066
67028
|
"type": "boolean",
|
|
67067
|
-
"description": "Whether or not the
|
|
67029
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
67068
67030
|
"default": false
|
|
67069
67031
|
},
|
|
67070
67032
|
"outputs": {
|
|
@@ -67139,7 +67101,7 @@
|
|
|
67139
67101
|
},
|
|
67140
67102
|
"unsafe": {
|
|
67141
67103
|
"type": "boolean",
|
|
67142
|
-
"description": "Whether or not the
|
|
67104
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
67143
67105
|
"default": false
|
|
67144
67106
|
},
|
|
67145
67107
|
"outputs": {
|
|
@@ -67824,11 +67786,6 @@
|
|
|
67824
67786
|
]
|
|
67825
67787
|
}
|
|
67826
67788
|
},
|
|
67827
|
-
"unsafe": {
|
|
67828
|
-
"type": "boolean",
|
|
67829
|
-
"description": "Whether or not the test or step is may be unsafe. Unsafe tests and steps may perform actions that could modify the system or environment in unexpected ways. Tests that contain unsafe steps are only performed within Docker containers or if unsafe tests are enabled with the `allowUnsafeTests` config property or the `--unsafe` flag.",
|
|
67830
|
-
"default": false
|
|
67831
|
-
},
|
|
67832
67789
|
"steps": {
|
|
67833
67790
|
"description": "Steps to perform as part of the test. Performed in the sequence defined. If one or more actions fail, the test fails. By default, if a step fails, the test stops and the remaining steps are not executed.",
|
|
67834
67791
|
"type": "array",
|
|
@@ -67863,7 +67820,7 @@
|
|
|
67863
67820
|
},
|
|
67864
67821
|
"unsafe": {
|
|
67865
67822
|
"type": "boolean",
|
|
67866
|
-
"description": "Whether or not the
|
|
67823
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
67867
67824
|
"default": false
|
|
67868
67825
|
},
|
|
67869
67826
|
"outputs": {
|
|
@@ -67910,7 +67867,7 @@
|
|
|
67910
67867
|
},
|
|
67911
67868
|
"unsafe": {
|
|
67912
67869
|
"type": "boolean",
|
|
67913
|
-
"description": "Whether or not the
|
|
67870
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
67914
67871
|
"default": false
|
|
67915
67872
|
},
|
|
67916
67873
|
"outputs": {
|
|
@@ -67965,7 +67922,7 @@
|
|
|
67965
67922
|
},
|
|
67966
67923
|
"unsafe": {
|
|
67967
67924
|
"type": "boolean",
|
|
67968
|
-
"description": "Whether or not the
|
|
67925
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
67969
67926
|
"default": false
|
|
67970
67927
|
},
|
|
67971
67928
|
"outputs": {
|
|
@@ -68176,7 +68133,7 @@
|
|
|
68176
68133
|
},
|
|
68177
68134
|
"unsafe": {
|
|
68178
68135
|
"type": "boolean",
|
|
68179
|
-
"description": "Whether or not the
|
|
68136
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
68180
68137
|
"default": false
|
|
68181
68138
|
},
|
|
68182
68139
|
"outputs": {
|
|
@@ -68358,7 +68315,7 @@
|
|
|
68358
68315
|
},
|
|
68359
68316
|
"unsafe": {
|
|
68360
68317
|
"type": "boolean",
|
|
68361
|
-
"description": "Whether or not the
|
|
68318
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
68362
68319
|
"default": false
|
|
68363
68320
|
},
|
|
68364
68321
|
"outputs": {
|
|
@@ -69154,7 +69111,7 @@
|
|
|
69154
69111
|
},
|
|
69155
69112
|
"unsafe": {
|
|
69156
69113
|
"type": "boolean",
|
|
69157
|
-
"description": "Whether or not the
|
|
69114
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
69158
69115
|
"default": false
|
|
69159
69116
|
},
|
|
69160
69117
|
"outputs": {
|
|
@@ -69311,7 +69268,7 @@
|
|
|
69311
69268
|
},
|
|
69312
69269
|
"unsafe": {
|
|
69313
69270
|
"type": "boolean",
|
|
69314
|
-
"description": "Whether or not the
|
|
69271
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
69315
69272
|
"default": false
|
|
69316
69273
|
},
|
|
69317
69274
|
"outputs": {
|
|
@@ -70309,7 +70266,7 @@
|
|
|
70309
70266
|
},
|
|
70310
70267
|
"unsafe": {
|
|
70311
70268
|
"type": "boolean",
|
|
70312
|
-
"description": "Whether or not the
|
|
70269
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
70313
70270
|
"default": false
|
|
70314
70271
|
},
|
|
70315
70272
|
"outputs": {
|
|
@@ -70611,7 +70568,7 @@
|
|
|
70611
70568
|
},
|
|
70612
70569
|
"unsafe": {
|
|
70613
70570
|
"type": "boolean",
|
|
70614
|
-
"description": "Whether or not the
|
|
70571
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
70615
70572
|
"default": false
|
|
70616
70573
|
},
|
|
70617
70574
|
"outputs": {
|
|
@@ -70899,7 +70856,7 @@
|
|
|
70899
70856
|
},
|
|
70900
70857
|
"unsafe": {
|
|
70901
70858
|
"type": "boolean",
|
|
70902
|
-
"description": "Whether or not the
|
|
70859
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
70903
70860
|
"default": false
|
|
70904
70861
|
},
|
|
70905
70862
|
"outputs": {
|
|
@@ -71115,7 +71072,7 @@
|
|
|
71115
71072
|
},
|
|
71116
71073
|
"unsafe": {
|
|
71117
71074
|
"type": "boolean",
|
|
71118
|
-
"description": "Whether or not the
|
|
71075
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
71119
71076
|
"default": false
|
|
71120
71077
|
},
|
|
71121
71078
|
"outputs": {
|
|
@@ -71558,7 +71515,7 @@
|
|
|
71558
71515
|
},
|
|
71559
71516
|
"unsafe": {
|
|
71560
71517
|
"type": "boolean",
|
|
71561
|
-
"description": "Whether or not the
|
|
71518
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
71562
71519
|
"default": false
|
|
71563
71520
|
},
|
|
71564
71521
|
"outputs": {
|
|
@@ -71725,7 +71682,7 @@
|
|
|
71725
71682
|
},
|
|
71726
71683
|
"unsafe": {
|
|
71727
71684
|
"type": "boolean",
|
|
71728
|
-
"description": "Whether or not the
|
|
71685
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
71729
71686
|
"default": false
|
|
71730
71687
|
},
|
|
71731
71688
|
"outputs": {
|
|
@@ -71805,7 +71762,7 @@
|
|
|
71805
71762
|
},
|
|
71806
71763
|
"unsafe": {
|
|
71807
71764
|
"type": "boolean",
|
|
71808
|
-
"description": "Whether or not the
|
|
71765
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
71809
71766
|
"default": false
|
|
71810
71767
|
},
|
|
71811
71768
|
"outputs": {
|
|
@@ -71880,7 +71837,7 @@
|
|
|
71880
71837
|
},
|
|
71881
71838
|
"unsafe": {
|
|
71882
71839
|
"type": "boolean",
|
|
71883
|
-
"description": "Whether or not the
|
|
71840
|
+
"description": "Whether or not the step may be unsafe. Unsafe steps may perform actions that could modify the system or environment in unexpected ways. Unsafe steps are only performed within Docker containers or if unsafe steps are enabled with the `allowUnsafeSteps` config property or the `--allow-unsafe` flag.",
|
|
71884
71841
|
"default": false
|
|
71885
71842
|
},
|
|
71886
71843
|
"outputs": {
|
|
@@ -72553,7 +72510,6 @@
|
|
|
72553
72510
|
"description": "This test includes every property across all actions.",
|
|
72554
72511
|
"before": "setup.json",
|
|
72555
72512
|
"after": "cleanup.json",
|
|
72556
|
-
"unsafe": true,
|
|
72557
72513
|
"runOn": [
|
|
72558
72514
|
{
|
|
72559
72515
|
"platforms": [
|