fix: experimental should be unattended (#704)

See https://github.com/ooni/probe/issues/2056
This commit is contained in:
Yeganathan S 2022-03-15 20:54:21 +05:30 committed by GitHub
parent 0f29f6f092
commit 340cd826ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,6 +22,8 @@ var All = map[string]Group{
Dash{},
NDT{},
},
// unattendedOK is explicitly set to false, since there is no need for consumption of excessive amounts of data with background tests
UnattendedOK: false,
},
"middlebox": {
Label: "Middleboxes",
@ -56,5 +58,6 @@ var All = map[string]Group{
STUNReachability{},
TorSf{},
},
UnattendedOK: true,
},
}