summaryrefslogtreecommitdiff
path: root/common/src/leap/soledad/common/tests/test_https.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/leap/soledad/common/tests/test_https.py')
-rw-r--r--common/src/leap/soledad/common/tests/test_https.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/common/src/leap/soledad/common/tests/test_https.py b/common/src/leap/soledad/common/tests/test_https.py
index eeeb4982..8d9b8d92 100644
--- a/common/src/leap/soledad/common/tests/test_https.py
+++ b/common/src/leap/soledad/common/tests/test_https.py
@@ -14,19 +14,16 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
"""
Test Leap backend bits: https
"""
+from unittest import skip
-
-from u1db.remote import http_client
+from testscenarios import TestWithScenarios
from leap.soledad import client
-from testscenarios import TestWithScenarios
-
+from leap.soledad.common.l2db.remote import http_client
from leap.soledad.common.tests.u1db_tests import test_backends
from leap.soledad.common.tests.u1db_tests import test_https
from leap.soledad.common.tests.util import (
@@ -65,14 +62,16 @@ def token_leap_https_sync_target(test, host, path, cert_file=None):
return st
+@skip("Skiping tests imported from U1DB.")
class TestSoledadHTTPSyncTargetHttpsSupport(
TestWithScenarios,
- test_https.TestHttpSyncTargetHttpsSupport,
+ # test_https.TestHttpSyncTargetHttpsSupport,
BaseSoledadTest):
scenarios = [
('token_soledad_https',
- {'server_def': test_https.https_server_def,
+ {
+ #'server_def': test_https.https_server_def,
'make_app_with_state': make_token_soledad_app,
'make_document_for_test': make_soledad_document_for_test,
'sync_target': token_leap_https_sync_target}),