Exemple #1
0
 def test_binaries_doesnt_raise_exception_if_running_from_bin(self):
     self.patch('os.path.isfile').return_value = True
     deploy_subcommand = DeploySubcommand()
     deploy_subcommand._binaries_tar('clusterrunner', '~/.clusterrunner/dist')
 def test_binaries_doesnt_raise_exception_if_running_from_bin(self):
     self.patch('os.path.isfile').return_value = True
     deploy_subcommand = DeploySubcommand()
     deploy_subcommand._binaries_tar('clusterrunner', '~/.clusterrunner/dist')
Exemple #3
0
 def test_binaries_tar_raises_exception_if_running_from_source(self):
     deploy_subcommand = DeploySubcommand()
     with self.assertRaisesRegex(SystemExit, '1'):
         deploy_subcommand._binaries_tar('python main.py deploy', '~/.clusterrunner/dist')
 def test_binaries_tar_raises_exception_if_running_from_source(self):
     deploy_subcommand = DeploySubcommand()
     with self.assertRaisesRegex(SystemExit, '1'):
         deploy_subcommand._binaries_tar('python -m app deploy', '~/.clusterrunner/dist')