From 404318a498b659b5eb6e8d6f67e32d5138e8249d Mon Sep 17 00:00:00 2001 From: felmer <felmer> Date: Tue, 3 Feb 2015 12:25:26 +0000 Subject: [PATCH] allows to run integration tests also with release versions. SVN: 33376 --- integration-tests/source/systemtest/testcase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/source/systemtest/testcase.py b/integration-tests/source/systemtest/testcase.py index 9940873a568..79dbaada6c7 100644 --- a/integration-tests/source/systemtest/testcase.py +++ b/integration-tests/source/systemtest/testcase.py @@ -175,7 +175,7 @@ class TestCase(object): The technologies are an array of enabled technologies. """ installerPath = self.artifactRepository.getPathToArtifact(INSTALLER_PROJECT, 'openBIS-installation') - installerFileName = os.path.basename(installerPath).split('.')[0] + installerFileName = os.path.basename(installerPath).rpartition('.tar')[0] util.executeCommand(['tar', '-zxf', installerPath, '-C', self.playgroundFolder], "Couldn't untar openBIS installer.") consolePropertiesFile = "%s/%s/console.properties" % (self.playgroundFolder, installerFileName) -- GitLab