Пример #1
0
def main(args=None):
    parser = argparse.ArgumentParser(
        description='Create wheels for all given project versions and upload them to the given index.')
    parser.add_argument('requirements',
                        help='requirements.txt style file specifying which project versions to package.')
    parser.add_argument('index', help='The index to upload the packaged software to.')
    parser.add_argument('--batch',
                        default=False,
                        action='store_true',
                        help='Batch mode. Do not prompt for credentials')
    parser.add_argument('--user',
                        default=os.environ.get('DEVPI_USER'),
                        help='The user to log in as.')
    parser.add_argument('--password',
                        default=os.environ.get('DEVPI_PASSWORD'),
                        help='Password of the user.')
    parser.add_argument('--blacklist', help='Packages matched by this requirements.txt style file will never be build.')
    parser.add_argument('--pure-index',
                        help='The index to use for pure packages. Any non-pure package will be uploaded '
                             'to the index given as positional argument. Packages already found in the '
                             'pure index will not be built, either.'
                        )
    parser.add_argument('--junit-xml',
                        help='Write information about the build success / failure to a JUnit-compatible XML file.')
    parser.add_argument('--run-id',
                        help='Add the given string to all entries in the XML output, allowing to distinguish output from multiple runs in a merged XML.')
    parser.add_argument('--dry-run', help='Build missing wheels, but do not modify the state of the devpi server.',
                        action='store_true')
    parser.add_argument('--client-cert', help='Client key to use to authenticate with the devpi server.', default=None)
    args = parser.parse_args(args=args)
    if not args.batch:
        if args.user is None:
            args.user = input('Username: '******'Password: ')

    packages = requirements.read_exact_versions(args.requirements)
    with wheeler.Builder() as builder, DevpiClient(args.index, args.user, args.password,
                                                   client_cert=args.client_cert) as devpi_client:
        if args.pure_index:
            with DevpiClient(args.pure_index, args.user, args.password,
                             client_cert=args.client_cert) as pure_index_client:
                processor = Processor(builder, devpi_client, args.blacklist, pure_index_client,
                                      junit_xml=args.junit_xml, dry_run=args.dry_run, run_id=args.run_id)
                processor.build_packages(packages)
        else:
            processor = Processor(builder, devpi_client, args.blacklist, junit_xml=args.junit_xml, dry_run=args.dry_run,
                                  run_id=args.run_id)
            processor.build_packages(packages)
Пример #2
0
def test_read_requirements():
    expected = [('progressbar', '2.2'), ('six', '1.7.3')]
    assert expected == requirements.read_exact_versions(
        'tests/fixture/sample_simple.txt')
Пример #3
0
def test_comments():
    expected = [('progressbar', '2.2')]
    assert expected == requirements.read_exact_versions(
        'tests/fixture/sample_comments.txt')
Пример #4
0
def test_fail_on_multiple_versions_on_line():
    with pytest.raises(ValueError):
        requirements.read_exact_versions(
            'tests/fixture/sample_multiple_versions_on_line.txt')
Пример #5
0
def test_fail_on_no_version():
    with pytest.raises(ValueError):
        requirements.read_exact_versions('tests/fixture/sample_no_version.txt')
def test_read_requirements():
    expected = [
        ('progressbar', '2.2'),
        ('six', '1.7.3')
    ]
    assert expected == requirements.read_exact_versions('tests/fixture/sample_simple.txt')
def test_comments():
    expected = [
        ('progressbar', '2.2')
    ]
    assert expected == requirements.read_exact_versions('tests/fixture/sample_comments.txt')
def test_fail_on_multiple_versions_on_line():
    with pytest.raises(ValueError):
        requirements.read_exact_versions('tests/fixture/sample_multiple_versions_on_line.txt')
def test_fail_on_no_version():
    with pytest.raises(ValueError):
        requirements.read_exact_versions('tests/fixture/sample_no_version.txt')