-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tlefebvre/fix-wrong-drivernetworkmanager-int…
…erface
- Loading branch information
Showing
420 changed files
with
5,612 additions
and
2,698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package ci | ||
|
||
import ( | ||
"os" | ||
"strconv" | ||
"testing" | ||
) | ||
|
||
// SkipSlow skips a slow test unless NOMAD_SLOW_TEST is set to a true value. | ||
func SkipSlow(t *testing.T, reason string) { | ||
value := os.Getenv("NOMAD_SLOW_TEST") | ||
run, err := strconv.ParseBool(value) | ||
if !run || err != nil { | ||
t.Skipf("Skipping slow test: %s", reason) | ||
} | ||
} | ||
|
||
// Parallel runs t in parallel, unless CI is set to a true value. | ||
// | ||
// In CI (CircleCI / GitHub Actions) we get better performance by running tests | ||
// in serial while not restricting GOMAXPROCS. | ||
func Parallel(t *testing.T) { | ||
value := os.Getenv("CI") | ||
isCI, err := strconv.ParseBool(value) | ||
if !isCI || err != nil { | ||
t.Parallel() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.