From 9b022a36818dc4d860a6bd56320b11ba1f8c0432 Mon Sep 17 00:00:00 2001 From: Colin Alworth Date: Mon, 11 Apr 2022 20:01:33 -0500 Subject: [PATCH] Correct paths for broken tasks after refactor --- Integrations/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Integrations/build.gradle b/Integrations/build.gradle index 58f988f931f..57ce5c8ef85 100644 --- a/Integrations/build.gradle +++ b/Integrations/build.gradle @@ -133,8 +133,8 @@ Closure composeConfig = { task -> def pyTestLegacy = runInDocker("test-py-37-legacy", 'python', ['python3', '-m', 'xmlrunner', 'discover', '-v', '-o', '/out/report'], composeConfig) def pyFunctionalTestLegacy = runInDocker('py-functional-test-legacy', 'python', ['/bin/bash', 'run-functional-tests.sh']) -def pyTest = runInDocker('test-py-deephaven', '../pyintegration', ['python3', '-m', 'xmlrunner', 'discover', '-s', 'tests', '-t', '.', '-v', '-o', '/out/report'], composeConfig) -def pyTestIntegration = runInDocker('test-py-deephaven-integration', '../pyintegration', ['/bin/bash', '-c', 'PYTHONPATH=/python integration-tests/run-tests.sh'], composeConfig) +def pyTest = runInDocker('test-py-deephaven', '../py/server', ['python3', '-m', 'xmlrunner', 'discover', '-s', 'tests', '-t', '.', '-v', '-o', '/out/report'], composeConfig) +def pyTestIntegration = runInDocker('test-py-deephaven-integration', '../py/server', ['/bin/bash', '-c', 'PYTHONPATH=/python integration-tests/run-tests.sh'], composeConfig) pyTestLegacy.configure({ onlyIf { TestTools.shouldRunTests(project) } })