diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-11-10 21:08:01 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-11-15 22:06:08 +0100 |
commit | f5ea508dfa0e5b2233536994c88b050f656f2cfc (patch) | |
tree | 148ad182452a131f60b2bb267410d4af4e92ee68 | |
parent | ecm.eclass: Drop live ebuild warning (diff) | |
download | kde-f5ea508dfa0e5b2233536994c88b050f656f2cfc.tar.gz kde-f5ea508dfa0e5b2233536994c88b050f656f2cfc.tar.bz2 kde-f5ea508dfa0e5b2233536994c88b050f656f2cfc.zip |
ecm.eclass: Disable appiumtests as well
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r-- | eclass/ecm.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index 4fa9ce7aed..fd1f01caec 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -545,7 +545,7 @@ ecm_src_prepare() { if [[ ${ECM_TEST} = forceoptional ]] ; then [[ ${_KFSLOT} = 5 ]] && ecm_punt_qt_module Test # if forceoptional, also cover non-kde categories - cmake_comment_add_subdirectory autotests test tests + cmake_comment_add_subdirectory appiumtests autotests test tests elif [[ ${ECM_TEST} = forceoptional-recursive ]] ; then [[ ${_KFSLOT} = 5 ]] && ecm_punt_qt_module Test local f pf="${T}/${P}"-tests-optional.patch @@ -567,7 +567,7 @@ ecm_src_prepare() { eqawarn " ${pf}" eqawarn "Push it upstream to make this message go away." elif [[ ${CATEGORY} = kde-frameworks || ${CATEGORY} = kde-plasma || ${CATEGORY} = kde-apps ]] ; then - cmake_comment_add_subdirectory autotests test tests + cmake_comment_add_subdirectory appiumtests autotests test tests fi fi |