nightly testing: unset http_proxy for client-test runs
This is needed for local CalDAV/CardDAV tests to succeed. With http_proxy set, all traffic would be attempted via these proxies, which doesn't work. All tests which need proxies have to be configured such that proxyHost/useProxy is set correctly in the server configs.
This commit is contained in:
parent
c7a730ac08
commit
10656b6484
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ class SyncEvolutionTest(Action):
|
|||
if not os.access(backenddir, os.F_OK):
|
||||
# try relative to client-test inside the current directory
|
||||
backenddir = "backends"
|
||||
basecmd = "CLIENT_TEST_SERVER=%s CLIENT_TEST_SOURCES=%s %s SYNCEVOLUTION_BACKEND_DIR=%s SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_LOG=%s CLIENT_TEST_EVOLUTION_PREFIX=file://%s/databases %s env LD_LIBRARY_PATH=build-synthesis/src/.libs PATH=backends/webdav:$PATH %s ./client-test" % (self.serverName, ",".join(self.sources), self.testenv, backenddir, self.serverlogs, context.workdir, self.runner, self.testPrefix);
|
||||
basecmd = "http_proxy= CLIENT_TEST_SERVER=%s CLIENT_TEST_SOURCES=%s %s SYNCEVOLUTION_BACKEND_DIR=%s SYNC_EVOLUTION_EVO_CALENDAR_DELAY=1 CLIENT_TEST_ALARM=1200 CLIENT_TEST_LOG=%s CLIENT_TEST_EVOLUTION_PREFIX=file://%s/databases %s env LD_LIBRARY_PATH=build-synthesis/src/.libs PATH=backends/webdav:$PATH %s ./client-test" % (self.serverName, ",".join(self.sources), self.testenv, backenddir, self.serverlogs, context.workdir, self.runner, self.testPrefix);
|
||||
if self.tests:
|
||||
tests = []
|
||||
for test in self.tests:
|
||||
|
|
Loading…
Reference in a new issue