Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: tests/conftest.py

Issue 29886648: Issue #6942 - Add XTM integration in CMS (Closed)
Patch Set: Addressed comments from Patch Set #4 Created Oct. 5, 2018, 4:23 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/conftest.py
diff --git a/tests/conftest.py b/tests/conftest.py
index f7bcfbe786adcd539ba337b16127e411e7db3ca1..a8c274223cafc15d1ed829f2bcfa1fe95eef62f5 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,7 +1,15 @@
+from __future__ import unicode_literals
+
import os
import pytest
import shutil
+pytest_plugins = [
+ 'tests.xtm_conftest',
+]
+
+_INTERCEPT_PORT = 443
+_INTERCEPT_HOST = 'wstest2.xtm-intl.com'
ROOTPATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

Powered by Google App Engine
This is Rietveld