Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
julienp committed Aug 28, 2024
1 parent 4692388 commit d93457f
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tests/containers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,14 +140,12 @@ func TestKitchenSinkLanguageVersions(t *testing.T) {
for _, dir := range dirs {
dir := dir
t.Run(dir.Name(), func(t *testing.T) {
if !strings.HasPrefix(dir.Name(), "node-") {
// We can't run the node tests in parallel because setting the node version is a
// global for the container
t.Parallel()
}
p := filepath.Join("testdata", dir.Name())
copyTestData(t, p)
integration.ProgramTest(t, &integration.ProgramTestOptions{
// We can't run the node tests in parallel because setting the node version is a
// global for the container.
NoParallel: strings.HasPrefix(dir.Name(), "node-"),
Dir: p,
Quick: true,
SkipRefresh: true,
Expand Down

0 comments on commit d93457f

Please sign in to comment.