示例#1
0
 def start_test_env():
     cli_call([
         "docker-compose", "-f",
         os.path.join(os.path.dirname(__file__),
                      "../fixtures/chaincode/docker-compose.yml"), "up",
         "-d"
     ])
 def shutdown_test_env(self):
     cli_call(["docker-compose", "-f", self.compose_file_path, "down"])
 def start_test_env(self):
     cli_call(["docker-compose", "-f", self.compose_file_path, "up", "-d"])
示例#4
0
 def shutdown_test_env():
     cli_call([
         "docker-compose", "-f",
         os.path.join(os.path.dirname(__file__),
                      "../fixtures/ca/docker-compose.yml"), "down"
     ])
示例#5
0
 def shutdown_test_env():
     cli_call(["docker-compose", "-f",
               os.path.join(os.path.dirname(__file__),
                            "../fixtures/ca/docker-compose.yml"),
               "down"])
示例#6
0
 def start_test_env():
     cli_call(["docker-compose", "-f",
               os.path.join(os.path.dirname(__file__),
                            "../fixtures/chaincode/docker-compose.yml"),
               "up", "-d"])