tkopecek / koji

Forked from koji 7 years ago
Clone

4f4639e PR#417 Python3 support for CLI + XMLRPC client

Merged and Committed by mikem 6 years ago
67 files changed. 5739 lines added. 5561 lines removed.
.coveragerc
file modified
+1 -1
.coveragerc3
file added
+12
Makefile
file modified
+14 -2
cli/Makefile
file modified
+1 -1
cli/koji
file modified
+109 -75
docs/source/writing_koji_code.rst
file modified
+1 -1
hub/kojihub.py
file modified
+1 -1
koji.spec
file modified
+75 -13
koji/Makefile
file modified
+10 -4
koji/__init__.py
file modified
+114 -96
koji/auth.py
file modified
+20 -9
koji/tasks.py
file modified
+2 -2
koji/util.py
file modified
+19 -12
tests/test_builder/loadkojid.py
file modified
+1 -0
tests/test_builder/test_choose_taskarch.py
file modified
+3 -3
tests/test_cli/data/comps-example.libcomps.out
file modified
+5009 -5009
tests/test_cli/data/comps-sample.libcomps.out
file modified
+31 -31
tests/test_cli/loadcli.py
file modified
+6 -2
tests/test_cli/test_add_group.py
file modified
+9 -8
tests/test_cli/test_add_host.py
file modified
+9 -11
tests/test_cli/test_add_host_to_channel.py
file modified
+10 -12
tests/test_cli/test_add_pkg.py
file modified
+11 -14
tests/test_cli/test_block_pkg.py
file modified
+9 -12
tests/test_cli/test_build.py
file modified
+22 -24
tests/test_cli/test_chain_build.py
file modified
+20 -22
tests/test_cli/test_edit_host.py
file modified
+9 -12
tests/test_cli/test_edit_tag.py
file modified
+9 -12
tests/test_cli/test_import_comps.py
file modified
+13 -12
tests/test_cli/test_list_commands.py
file modified
+14 -10
tests/test_cli/test_maven_build.py
file modified
+20 -22
tests/test_cli/test_remove_channel.py
file modified
+8 -10
tests/test_cli/test_remove_host_from_channel.py
file modified
+8 -10
tests/test_cli/test_remove_pkg.py
file modified
+10 -13
tests/test_cli/test_rename_channel.py
file modified
+7 -9
tests/test_cli/test_running_in_bg.py
file modified
+2 -1
tests/test_cli/test_runroot.py
file modified
+4 -4
tests/test_cli/test_save_failed_tree.py
file modified
+4 -3
tests/test_cli/test_unique_path.py
file modified
+4 -2
tests/test_cli/test_upload_progress_callback.py
file modified
+4 -3
tests/test_cli/test_watch_tasks.py
file modified
+11 -9
tests/test_hub/test_getRPMDeps.py
file modified
+2 -1
tests/test_lib/data/maven/bad_empty_config.initests/data/maven/bad_empty_config.ini
file renamed
+0 -0
tests/test_lib/data/maven/bad_scmurl_config.initests/data/maven/bad_scmurl_config.ini
file renamed
+0 -0
tests/test_lib/data/maven/bad_type_config.initests/data/maven/bad_type_config.ini
file renamed
+0 -0
tests/test_lib/data/maven/bad_wrapper_config.initests/data/maven/bad_wrapper_config.ini
file renamed
+0 -0
tests/test_lib/data/maven/config.initests/data/maven/config.ini
file renamed
+0 -0
tests/test_lib/data/maven/good_config.initests/data/maven/good_config.ini
file renamed
+0 -0
tests/test_lib/data/rpms/test-deps-1-1.fc24.x86_64.rpmtests/data/rpms/test-deps-1-1.fc24.x86_64.rpm
file renamed
+0 -0
tests/test_lib/data/rpms/test-nopatch-1-1.fc24.nosrc.rpmtests/data/rpms/test-nopatch-1-1.fc24.nosrc.rpm
file renamed
+0 -0
tests/test_lib/data/rpms/test-nosrc-1-1.fc24.nosrc.rpmtests/data/rpms/test-nosrc-1-1.fc24.nosrc.rpm
file renamed
+0 -0
tests/test_lib/data/rpms/test-src-1-1.fc24.src.rpmtests/data/rpms/test-src-1-1.fc24.src.rpm
file renamed
+0 -0
tests/test_lib/data/specs/test-deps._spectests/data/specs/test-deps._spec
file renamed
+0 -0
tests/test_lib/data/specs/test-nopatch._spectests/data/specs/test-nopatch._spec
file renamed
+0 -0
tests/test_lib/data/specs/test-nosrc._spectests/data/specs/test-nosrc._spec
file renamed
+0 -0
tests/test_lib/data/specs/test-src._spectests/data/specs/test-src._spec
file renamed
+0 -0
tests/test_lib/test_client_session.pytests/test_client_session.py
file renamed
+15 -11
tests/test_lib/test_fixEncoding.pytests/test_fixEncoding.py
file renamed
+28 -26
tests/test_lib/test_parsers.pytests/test_parsers.py
file renamed
+3 -2
tests/test_lib/test_profiles.pytests/test_profiles.py
file renamed
+6 -2
tests/test_lib/test_utils.pytests/test_utils.py
file renamed
+15 -6
tests/test_lib_py2only/test_compatrequests.pytests/test_compatrequests.py
file renamed
+0 -0
tests/test_lib_py2only/test_krbv.pytests/test_krbv.py
file renamed
+1 -0
tests/test_lib_py2only/test_policy.pytests/test_policy.py
file renamed
+1 -0
tests/test_lib_py2only/test_tasks.pytests/test_tasks.py
file renamed
+13 -12
tests/test_plugins/test_runroot_builder.py
file modified
+3 -2
tests/test_plugins/test_save_failed_tree_builder.py
file modified
+1 -0
vm/kojivmd
file modified
+5 -2
    PR#417 Python3 support for CLI + XMLRPC client
    
    Merges #417
    https://pagure.io/koji/pull-request/417
    
        
file modified
+1 -1
file added
+12
file modified
+14 -2
file modified
+1 -1
file modified
+109 -75
file modified
+1 -1
file modified
+75 -13
file modified
+10 -4
file modified
+114 -96
file modified
+20 -9
file modified
+2 -2
file modified
+19 -12
file modified
+6 -2
file modified
+11 -14
file modified
+22 -24
tests/test_lib/data/maven/bad_empty_config.ini tests/data/maven/bad_empty_config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/maven/bad_scmurl_config.ini tests/data/maven/bad_scmurl_config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/maven/bad_type_config.ini tests/data/maven/bad_type_config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/maven/bad_wrapper_config.ini tests/data/maven/bad_wrapper_config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/maven/config.ini tests/data/maven/config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/maven/good_config.ini tests/data/maven/good_config.ini
file renamed
file was renamed with no change to the file
tests/test_lib/data/rpms/test-deps-1-1.fc24.x86_64.rpm tests/data/rpms/test-deps-1-1.fc24.x86_64.rpm
file renamed
file was renamed with no change to the file
tests/test_lib/data/rpms/test-nopatch-1-1.fc24.nosrc.rpm tests/data/rpms/test-nopatch-1-1.fc24.nosrc.rpm
file renamed
file was renamed with no change to the file
tests/test_lib/data/rpms/test-nosrc-1-1.fc24.nosrc.rpm tests/data/rpms/test-nosrc-1-1.fc24.nosrc.rpm
file renamed
file was renamed with no change to the file
tests/test_lib/data/rpms/test-src-1-1.fc24.src.rpm tests/data/rpms/test-src-1-1.fc24.src.rpm
file renamed
file was renamed with no change to the file
tests/test_lib/data/specs/test-deps._spec tests/data/specs/test-deps._spec
file renamed
file was renamed with no change to the file
tests/test_lib/data/specs/test-nopatch._spec tests/data/specs/test-nopatch._spec
file renamed
file was renamed with no change to the file
tests/test_lib/data/specs/test-nosrc._spec tests/data/specs/test-nosrc._spec
file renamed
file was renamed with no change to the file
tests/test_lib/data/specs/test-src._spec tests/data/specs/test-src._spec
file renamed
file was renamed with no change to the file
tests/test_lib/test_client_session.py tests/test_client_session.py
file renamed
+15 -11
tests/test_lib/test_fixEncoding.py tests/test_fixEncoding.py
file renamed
+28 -26
tests/test_lib/test_parsers.py tests/test_parsers.py
file renamed
+3 -2
tests/test_lib/test_profiles.py tests/test_profiles.py
file renamed
+6 -2
tests/test_lib/test_utils.py tests/test_utils.py
file renamed
+15 -6
tests/test_lib_py2only/test_compatrequests.py tests/test_compatrequests.py
file renamed
file was renamed with no change to the file
file renamed
file renamed
file renamed
+13 -12
file modified
+5 -2