chore(query): disable flaky end to end tests for flux (#14231)

pull/14210/head
Jonathan A. Sternberg 2019-06-28 10:15:47 -05:00 committed by GitHub
parent 1e461adfa4
commit 3d9b9fe36f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -31,9 +31,11 @@ func init() {
}
func TestFluxEndToEnd(t *testing.T) {
t.Skip("flaky test: https://github.com/influxdata/influxdb/issues/14193")
runEndToEnd(t, stdlib.FluxTestPackages)
}
func BenchmarkFluxEndToEnd(b *testing.B) {
b.Skip("flaky test: https://github.com/influxdata/influxdb/issues/14193")
benchEndToEnd(b, stdlib.FluxTestPackages)
}