We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 780d24a + 7426dc3 commit c81d747Copy full SHA for c81d747
2 files changed
.github/workflows/test.yml
@@ -69,5 +69,6 @@ jobs:
69
TOPIC_FILES: ${{ steps.topics.outputs.changed }}
70
COLLECTION_FILES: ${{ steps.collections.outputs.changed }}
71
TEST_ALL_FILES: ${{ steps.all.outputs.changed }}
72
+ SKIP_COLLECTION_API_CHECKS: ${{ matrix.test_type == 'all' && '1' || '' }}
73
COLLECTION_SHARD: ${{ matrix.shard }}
74
COLLECTION_TOTAL_SHARDS: ${{ matrix.total_shards }}
test/collections_test.rb
@@ -137,6 +137,10 @@
137
end
138
139
it "fails if a user, organization, or repository has been renamed or removed" do
140
+ if ENV["SKIP_COLLECTION_API_CHECKS"]
141
+ skip "Skipping collection API checks (rename detection handled by collections-renames workflow)"
142
+ end
143
+
144
errors = []
145
repos_to_check = []
146
users_to_check = []
0 commit comments