File tree 3 files changed +16
-1
lines changed
3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package handlers
3
3
import (
4
4
"fmt"
5
5
"path/filepath"
6
+ "runtime"
6
7
"testing"
7
8
8
9
"github.com/creachadair/jrpc2/code"
@@ -116,6 +117,13 @@ func TestLangServer_workspaceExecuteCommand_modules_basic(t *testing.T) {
116
117
}
117
118
118
119
func TestLangServer_workspaceExecuteCommand_modules_multiple (t * testing.T ) {
120
+ if runtime .GOOS == "darwin" && runtime .GOARCH == "arm64" {
121
+ // The underlying API is now deprecated anyway
122
+ // so it's not worth adapting tests for all platforms.
123
+ // We just skip tests on Apple Silicon.
124
+ t .Skip ("deprecated API" )
125
+ }
126
+
119
127
testData , err := filepath .Abs ("testdata" )
120
128
if err != nil {
121
129
t .Fatal (err )
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ func newExecutor(t *testing.T) TerraformExecutor {
70
70
t .Fatal (err )
71
71
}
72
72
73
- opts := tfinstall .ExactVersion ("0.13.1 " , installDir )
73
+ opts := tfinstall .ExactVersion ("1.1.0 " , installDir )
74
74
execPath , err := opts .ExecPath (context .Background ())
75
75
if err != nil {
76
76
t .Fatal (err )
Original file line number Diff line number Diff line change 7
7
"log"
8
8
"os"
9
9
"path/filepath"
10
+ "runtime"
10
11
"testing"
11
12
12
13
"github.com/google/go-cmp/cmp"
@@ -16,6 +17,12 @@ import (
16
17
)
17
18
18
19
func TestModuleManager_ModuleCandidatesByPath (t * testing.T ) {
20
+ if runtime .GOOS == "darwin" && runtime .GOARCH == "arm64" {
21
+ // The underlying API is now deprecated anyway
22
+ // so it's not worth adapting tests for all platforms.
23
+ // We just skip tests on Apple Silicon.
24
+ t .Skip ("deprecated API" )
25
+ }
19
26
testData , err := filepath .Abs ("testdata" )
20
27
if err != nil {
21
28
t .Fatal (err )
You can’t perform that action at this time.
0 commit comments