chore: Skip tests on circleci
This is derived frompull/19446/head2fd8264
and4f850b5
, which skips tests on appveyor
parent
f2205b37aa
commit
a24edb2b1c
|
@ -11,8 +11,8 @@ import (
|
|||
|
||||
// Ensure filter can insert values and verify they exist.
|
||||
func TestFilter_InsertContains(t *testing.T) {
|
||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
|
||||
t.Skip("Skipping test in short, race and appveyor mode.")
|
||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" || os.Getenv("CIRCLECI") != "" {
|
||||
t.Skip("Skipping test in short, race, circle and appveyor mode.")
|
||||
}
|
||||
|
||||
// Short, less comprehensive test.
|
||||
|
|
|
@ -564,8 +564,8 @@ func TestCache_CacheWriteMemoryExceeded(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestCache_Deduplicate_Concurrent(t *testing.T) {
|
||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
|
||||
t.Skip("Skipping test in short, race, appveyor mode.")
|
||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" || os.Getenv("CIRCLECI") != "" {
|
||||
t.Skip("Skipping test in short, race, circleci and appveyor mode.")
|
||||
}
|
||||
|
||||
values := make(map[string][]Value)
|
||||
|
|
Loading…
Reference in New Issue