We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccdd41d commit 014608dCopy full SHA for 014608d
1 file changed
tests/base.py
@@ -22,8 +22,12 @@ class TestAppConfig(AppConfig):
22
def __init__(self, config_file):
23
super(TestAppConfig, self).__init__(config_file)
24
with self.update_context():
25
+ # Run tests against a local server
26
self.set('remote.host', 'localhost')
27
28
+ # Change default API port so that tests can be run alongside the daemon
29
+ self.set('api.port', '28081')
30
+
31
class VaultTestCase(asynctest.TestCase):
32
folder = None
33
0 commit comments