Skip to content

Commit a51d073

Browse files
committed
test: Lock graphql 2.1 testing to 2.1.13
GraphQl 2.1.14 is corrupted. Until that is resolved, lock the 2.1 tests to 2.1.13 and remove 2.1 from the appraisal loop.
1 parent e200b10 commit a51d073

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

instrumentation/graphql/Appraisals

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@
66

77
# Max compatible version of 2.0.x
88

9-
(0..4).each do |minor_version|
9+
# TODO: graphql version 2.1.14 is corrupted
10+
# See: https://github.com/rmosolgo/graphql-ruby/issues/5272
11+
# Lock the tests to 2.1.13 until it is resolved
12+
appraise "graphql-2.1.x" do
13+
gem 'graphql', "~> 2.1.13"
14+
end
15+
16+
# Remove 2.1 from the loop until 2.1.15 comes out
17+
[0, 2, 3, 4].each do |minor_version|
1018
appraise "graphql-2.#{minor_version}.x" do
1119
gem 'graphql', "~> 2.#{minor_version}.0"
1220
end

0 commit comments

Comments
 (0)