From 5617b8c6ec6a1f6a88cc9d4201d807098c02120a Mon Sep 17 00:00:00 2001 From: "anastasiia.spaseeva" <anastasiia.spaseeva@jetbrains.com> Date: Tue, 28 Jul 2020 11:35:54 +0300 Subject: [PATCH] exclude compatibility section to load tests --- .../kotlin/org/jetbrains/kotlin/spec/viewer/SpecTestsViewer.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/main/kotlin/org/jetbrains/kotlin/spec/viewer/SpecTestsViewer.kt b/web/src/main/kotlin/org/jetbrains/kotlin/spec/viewer/SpecTestsViewer.kt index f13a286ee..a45bc8030 100644 --- a/web/src/main/kotlin/org/jetbrains/kotlin/spec/viewer/SpecTestsViewer.kt +++ b/web/src/main/kotlin/org/jetbrains/kotlin/spec/viewer/SpecTestsViewer.kt @@ -65,7 +65,8 @@ class SpecTestsViewer { val excludedSectionsToLoadTests = setOf( "introduction", "experimental-features", "acknowledgments", "reference", "feedback", "syntax-and-grammar", "lexical-grammar", "whitespace-and-comments", "keywords-and-operators", - "literals", "identifiers", "string-mode-grammar", "tokens", "syntax-grammar", "documentation-comments" + "literals", "identifiers", "string-mode-grammar", "tokens", "syntax-grammar", "documentation-comments", + "compatibility" ) }