mirror of
https://github.com/lubuntu-team/ci-tooling.git
synced 2025-07-04 19:41:28 +00:00
Put the argument-based code in the __init__ for the function.
This commit is contained in:
parent
3fd9869417
commit
765f02edc7
@ -22,6 +22,20 @@ from launchpadlib.launchpad import Launchpad
|
|||||||
|
|
||||||
|
|
||||||
class LaunchpadCheck:
|
class LaunchpadCheck:
|
||||||
|
def __init__(self):
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("-p", "--package", help="The source package",
|
||||||
|
required=True)
|
||||||
|
parser.add_argument("-v", "--package-version", help="The package version",
|
||||||
|
required=True)
|
||||||
|
parser.add_argument("-t", "--lp-team", help="Launchpad user with the PPA",
|
||||||
|
required=True)
|
||||||
|
parser.add_argument("-r", "--ppa", help="Name of the Launchpad PPA",
|
||||||
|
required=True)
|
||||||
|
args = parser.parse_args()
|
||||||
|
self.lp_person = args.lp_team
|
||||||
|
self.ppa_name = args.ppa
|
||||||
|
|
||||||
def login(self):
|
def login(self):
|
||||||
"""Log in to Launchpad anonymously"""
|
"""Log in to Launchpad anonymously"""
|
||||||
lp = Launchpad.login_anonymously("CI Infrastructure", "production",
|
lp = Launchpad.login_anonymously("CI Infrastructure", "production",
|
||||||
@ -105,18 +119,5 @@ class LaunchpadCheck:
|
|||||||
raise ValueError("Timed out, contact Launchpad admins")
|
raise ValueError("Timed out, contact Launchpad admins")
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
parser = argparse.ArgumentParser()
|
|
||||||
parser.add_argument("-p", "--package", help="The source package",
|
|
||||||
required=True)
|
|
||||||
parser.add_argument("-v", "--package-version", help="The package version",
|
|
||||||
required=True)
|
|
||||||
parser.add_argument("-t", "--lp-team", help="Launchpad user with the PPA",
|
|
||||||
required=True)
|
|
||||||
parser.add_argument("-r", "--ppa", help="Name of the Launchpad PPA",
|
|
||||||
required=True)
|
|
||||||
args = parser.parse_args()
|
|
||||||
self.lp_person = args.lp_team
|
|
||||||
self.ppa_name = args.ppa
|
|
||||||
|
|
||||||
lpcheck = LaunchpadCheck()
|
lpcheck = LaunchpadCheck()
|
||||||
lpcheck.verify_binaries_published()
|
lpcheck.verify_binaries_published()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user