1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Maximiliano Curia <maxy@gnuservers.com.ar>
Date: Wed, 15 Aug 2018 11:26:39 +0200
Subject: Disable network dependent test
---
autotests/CMakeLists.txt | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt
index 4198837..e0eb38c 100644
--- a/autotests/CMakeLists.txt
+++ b/autotests/CMakeLists.txt
@@ -6,6 +6,7 @@ set_package_properties(Qt5Test PROPERTIES PURPOSE "Required for autotests")
ecm_add_tests(
configtest.cpp
persontest.cpp
- providertest.cpp
+ # Disable network dependant test
+ # providertest.cpp
LINK_LIBRARIES Qt${QT_MAJOR_VERSION}::Test KF5::Attica
)
|