From c86767f33679674de11b4a3ec23ced478ee766d8 Mon Sep 17 00:00:00 2001 From: ulysses-you Date: Sat, 7 Aug 2021 01:55:32 +0800 Subject: [PATCH] [KYUUBI #901] Skip download module generate config docs ### _Why are the changes needed?_ Imporve perf of generate config docs. ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [x] [Run test](https://kyuubi.readthedocs.io/en/latest/tools/testing.html#running-tests) locally before make a pull request Closes #901 from ulysses-you/enhance-comment. Closes #901 a86a9aa6 [ulysses-you] skip-download Authored-by: ulysses-you Signed-off-by: Cheng Pan --- .../org/apache/kyuubi/config/AllKyuubiConfiguration.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kyuubi-server/src/test/scala/org/apache/kyuubi/config/AllKyuubiConfiguration.scala b/kyuubi-server/src/test/scala/org/apache/kyuubi/config/AllKyuubiConfiguration.scala index b3072de40..7f6e043ca 100644 --- a/kyuubi-server/src/test/scala/org/apache/kyuubi/config/AllKyuubiConfiguration.scala +++ b/kyuubi-server/src/test/scala/org/apache/kyuubi/config/AllKyuubiConfiguration.scala @@ -35,12 +35,12 @@ import org.apache.kyuubi.zookeeper.ZookeeperConf * * To run the entire test suite: * {{{ - * build/mvn test -DwildcardSuites=org.apache.kyuubi.config.AllKyuubiConfiguration + * build/mvn test -DwildcardSuites=org.apache.kyuubi.config.AllKyuubiConfiguration -pl '!externals/kyuubi-download' * }}} * * To re-generate golden files for entire suite, run: * {{{ - * KYUUBI_UPDATE=1 build/mvn test -DwildcardSuites=org.apache.kyuubi.config.AllKyuubiConfiguration + * KYUUBI_UPDATE=1 build/mvn test -DwildcardSuites=org.apache.kyuubi.config.AllKyuubiConfiguration -pl '!externals/kyuubi-download' * }}} */ // scalastyle:on line.size.limit