5e401bd Split utils/general.py

Authored and Committed by mprahl 4 years ago
41 files changed. 1378 lines added. 1358 lines removed.
module_build_service/builder/KojiContentGenerator.py
file modified
+1 -1
module_build_service/builder/KojiModuleBuilder.py
file modified
+58 -13
module_build_service/builder/MockModuleBuilder.py
file modified
+111 -9
module_build_service/builder/base.py
file modified
+32 -2
module_build_service/builder/utils.py
file modified
+175 -1
module_build_service/common/utils.py
file added
+226
module_build_service/manage.py
file modified
+4 -9
module_build_service/models.py
file modified
+1 -4
module_build_service/resolver/DBResolver.py
file modified
+1 -1
module_build_service/resolver/MBSResolver.py
file modified
+1 -1
module_build_service/scheduler/handlers/components.py
file modified
+1 -1
module_build_service/scheduler/handlers/modules.py
file modified
+4 -4
module_build_service/scm.py
file modified
+38 -1
module_build_service/utils/__init__.py
file modified
+0 -1
module_build_service/utils/general.py
file removed
-721
module_build_service/utils/mse.py
file modified
+2 -1
module_build_service/utils/submit.py
file modified
+76 -4
module_build_service/utils/views.py
file modified
+1 -1
module_build_service/views.py
file modified
+1 -1
module_build_service/web/__init__.py
file added
+0
module_build_service/web/utils.py
file added
+19
tests/__init__.py
file modified
+3 -2
tests/conftest.py
file modified
+2 -2
tests/test_build/test_build.py
file modified
+7 -7
tests/test_builder/test_builder_utils.py
file modified
+344 -115
tests/test_builder/test_koji.py
file modified
+19 -1
tests/test_builder/test_mock.py
file modified
+73 -5
tests/test_common/test_utils.py
file added
+152
tests/test_content_generator.py
file modified
+4 -5
tests/test_manage.py
file modified
+1 -1
tests/test_models/test_models.py
file modified
+1 -1
tests/test_resolver/test_db.py
file modified
+1 -1
tests/test_resolver/test_koji.py
file modified
+1 -1
tests/test_resolver/test_local.py
file modified
+1 -1
tests/test_resolver/test_mbs.py
file modified
+2 -2
tests/test_scheduler/test_batches.py
file modified
+1 -1
tests/test_scheduler/test_default_modules.py
file modified
+2 -2
tests/test_scheduler/test_module_init.py
file modified
+1 -2
tests/test_utils/test_utils.py
file modified
+5 -427
tests/test_utils/test_utils_mse.py
file modified
+4 -3
tests/test_views/test_views.py
file modified
+2 -3
    Split utils/general.py
    
    This puts backend specific code in either the builder or scheduler
    subpackage. This puts API specific code in the new web subpackage.
    Lastly, any code shared between the API and backend is placed in the
    common subpackage.
    
        
file modified
+38 -1
empty file added
file modified
+3 -2
file modified
+2 -2
file modified
+1 -1
file modified
+5 -427