mirror of
https://github.com/goharbor/harbor.git
synced 2025-01-08 00:48:17 +01:00
95c0c259ec
This commit creates a new E2E API test case to verify the replication based on label Signed-off-by: Wenkai Yin <yinw@vmware.com>
13 lines
408 B
Python
13 lines
408 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
import base
|
|
import swagger_client
|
|
|
|
class Project(base.Base):
|
|
def create_project(self, name=base._random_name("project"),
|
|
metadata = {}, **kwargs):
|
|
client = self._get_client(**kwargs)
|
|
_, _, header = client.projects_post_with_http_info(
|
|
swagger_client.ProjectReq(name, metadata))
|
|
return base._get_id_from_header(header), name |