summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-14 18:34:09 +0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-14 18:34:09 +0200
commitdc991ddffc287263c2b4fd218d43e2f501b181dc (patch)
treec216a03162eecb63a0a39e02e8103e048ab7afa9 /service
parent4ddf0754fad765eb2fd31af710de9ae03f643c8a (diff)
Adding feature toggle for auto reload so we can disable it in the functional tests
Diffstat (limited to 'service')
-rw-r--r--service/test/support/integration_helper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/service/test/support/integration_helper.py b/service/test/support/integration_helper.py
index 326ec7cd..7b6af2e4 100644
--- a/service/test/support/integration_helper.py
+++ b/service/test/support/integration_helper.py
@@ -146,6 +146,7 @@ class SoledadTestBase:
# setup app
PixelatedMail.from_email_address = self.mail_address
self.app = pixelated.user_agent.app.test_client()
+ pixelated.user_agent.DISABLED_FEATURES.append('autoReload')
self.account = FakeAccount()
self.pixelated_mailboxes = PixelatedMailBoxes(self.account)
self.mail_sender = mock()