├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── linters.yaml │ └── unittests.yaml ├── .gitignore ├── .mdlint_style ├── .mdlrc ├── .mypy.ini ├── .pylintrc ├── .tektonlintrc.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── atomic_reactor ├── __init__.py ├── auth.py ├── cli │ ├── __init__.py │ ├── job.py │ ├── main.py │ ├── parser.py │ └── task.py ├── config.py ├── constants.py ├── dirs.py ├── download.py ├── inner.py ├── metadata.py ├── plugin.py ├── plugins │ ├── __init__.py │ ├── add_buildargs_in_df.py │ ├── add_dockerfile.py │ ├── add_filesystem.py │ ├── add_flatpak_labels.py │ ├── add_help.py │ ├── add_image_content_manifest.py │ ├── add_labels_in_df.py │ ├── build_source_container.py │ ├── bump_release.py │ ├── cancel_build_reservation.py │ ├── change_from_in_df.py │ ├── check_and_set_platforms.py │ ├── check_base_image.py │ ├── check_user_settings.py │ ├── compare_components.py │ ├── distribution_scope.py │ ├── export_operator_manifests.py │ ├── fetch_docker_archive.py │ ├── fetch_maven_artifacts.py │ ├── fetch_sources.py │ ├── flatpak_create_dockerfile.py │ ├── flatpak_create_oci.py │ ├── flatpak_update_dockerfile.py │ ├── gather_builds_metadata.py │ ├── generate_sbom.py │ ├── group_manifests.py │ ├── hermeto_init.py │ ├── hermeto_postprocess.py │ ├── hide_files.py │ ├── inject_parent_image.py │ ├── inject_yum_repos.py │ ├── koji_import.py │ ├── koji_parent.py │ ├── koji_tag_build.py │ ├── maven_url_sources_metadata.py │ ├── pin_operator_digest.py │ ├── push_floating_tags.py │ ├── pyrpkg_fetch_artefacts.py │ ├── resolve_composes.py │ ├── resolve_remote_source.py │ ├── rpmqa.py │ ├── sendmail.py │ ├── store_metadata.py │ ├── tag_and_push.py │ ├── tag_from_config.py │ └── verify_media_types.py ├── schemas │ ├── config.json │ ├── content_manifest.json │ ├── content_sets.json │ ├── fetch-artifacts-nvr.json │ ├── fetch-artifacts-pnc.json │ ├── fetch-artifacts-url.json │ ├── operator_csv_modifications.json │ ├── package_mapping.json │ ├── plugins.json │ ├── sbom-1.4.schema.json │ ├── source_containers_user_params.json │ ├── user_params.json │ └── workflow_data.json ├── source.py ├── tasks │ ├── __init__.py │ ├── binary.py │ ├── binary_container_build.py │ ├── clone.py │ ├── common.py │ ├── plugin_based.py │ └── sources.py ├── types.py ├── util.py ├── utils │ ├── __init__.py │ ├── cachito.py │ ├── flatpak_util.py │ ├── hermeto.py │ ├── imageutil.py │ ├── koji.py │ ├── manifest.py │ ├── odcs.py │ ├── operator.py │ ├── pnc.py │ ├── remote_host.py │ ├── retries.py │ ├── rpm.py │ └── yum.py └── version.py ├── docs ├── api.md ├── apidocs │ ├── Makefile │ ├── text.mako │ └── top.md ├── base_images.md ├── config.md ├── dev_testing.md ├── flatpak.md ├── garbage_collection.md ├── koji.md ├── manpage │ ├── atomic-reactor.1 │ └── generate_manpage.py ├── plugin_development.md ├── plugins.md ├── pull_request_template.md └── tasks.md ├── otel-requirements.in ├── otel-requirements.txt ├── rel-eng ├── lib │ └── osbsbuilder.py ├── packages │ ├── .readme │ └── atomic-reactor ├── releasers.conf ├── tito.props └── version.template ├── requirements-build.in ├── requirements-build.txt ├── requirements-devel.in ├── requirements-devel.txt ├── requirements-pip.in ├── requirements-pip.txt ├── requirements.in ├── requirements.txt ├── setup.py ├── tekton ├── pipelines │ ├── binary-container.yaml │ └── source-container.yaml └── tasks │ ├── binary-container-build.yaml │ ├── binary-container-cachito.yaml │ ├── binary-container-exit.yaml │ ├── binary-container-hermeto.yaml │ ├── binary-container-init.yaml │ ├── binary-container-postbuild.yaml │ ├── binary-container-prebuild.yaml │ ├── binary-container-set-results.yaml │ ├── clone.yaml │ ├── source-container-build.yaml │ ├── source-container-exit.yaml │ └── source-container-set-results.yaml ├── test.sh ├── tests ├── README ├── __init__.py ├── cli │ ├── test_job.py │ ├── test_main.py │ ├── test_parser.py │ └── test_task.py ├── conftest.py ├── constants.py ├── files │ ├── df-in-subdir │ │ └── subdir │ │ │ └── Dockerfile │ ├── docker-hello-world-error-build │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ └── some │ │ │ └── subdir │ │ │ └── foo │ ├── docker-hello-world-error-config │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ └── container.yaml │ ├── docker-hello-world-multistage-custom │ │ ├── Dockerfile │ │ └── container.yaml │ ├── docker-hello-world-multistage-custom_multiple │ │ ├── Dockerfile │ │ └── container.yaml │ ├── docker-hello-world-multistage-scratch │ │ ├── Dockerfile │ │ └── container.yaml │ ├── docker-hello-world-multistage │ │ ├── Dockerfile │ │ └── container.yaml │ ├── docker-hello-world │ │ ├── Dockerfile │ │ ├── LICENSE │ │ ├── README.md │ │ ├── container.yaml │ │ └── some │ │ │ └── subdir │ │ │ └── foo │ ├── example-build.json │ ├── example-koji-metadata-ppc64le.json │ └── example-koji-metadata-x86_64.json ├── flatpak.py ├── mock │ └── __init__.py ├── mock_env.py ├── plugins │ ├── __init__.py │ ├── test_add_buildargs.py │ ├── test_add_dockerfile.py │ ├── test_add_filesystem.py │ ├── test_add_flatpak_labels.py │ ├── test_add_help.py │ ├── test_add_image_content_manifest.py │ ├── test_add_labels.py │ ├── test_build_source_container.py │ ├── test_bump_release.py │ ├── test_cancel_build_reservation.py │ ├── test_change_from_in_df.py │ ├── test_check_and_set_platforms.py │ ├── test_check_base_image.py │ ├── test_check_user_settings.py │ ├── test_compare_components.py │ ├── test_distribution_scope.py │ ├── test_export_operator_manifests.py │ ├── test_fetch_docker_archive.py │ ├── test_fetch_maven_artifacts.py │ ├── test_fetch_sources.py │ ├── test_flatpak_create_dockerfile.py │ ├── test_flatpak_create_oci.py │ ├── test_flatpak_update_dockerfile.py │ ├── test_gather_builds_metadata.py │ ├── test_generate_sbom.py │ ├── test_group_manifests.py │ ├── test_hermeto_init.py │ ├── test_hermeto_postprocess.py │ ├── test_hide_files.py │ ├── test_inject_parent_image.py │ ├── test_inject_yum_repos.py │ ├── test_koji_import.py │ ├── test_koji_parent.py │ ├── test_koji_tag_build.py │ ├── test_maven_url_sources_metadata.py │ ├── test_pin_operator_digests.py │ ├── test_push_floating_tags.py │ ├── test_pyrpkg_fetch_artefacts.py │ ├── test_resolve_composes.py │ ├── test_resolve_remote_source.py │ ├── test_rpmqa.py │ ├── test_sendmail.py │ ├── test_store_metadata.py │ ├── test_tag_and_push.py │ ├── test_tag_from_config.py │ └── test_verify_media_types.py ├── requirements.in ├── requirements.txt ├── retry_mock.py ├── stubs.py ├── tasks │ ├── test_binary_container_build.py │ ├── test_clone.py │ ├── test_common.py │ ├── test_plugin_based.py │ └── test_sources.py ├── test_auth.py ├── test_config.py ├── test_dirs.py ├── test_download.py ├── test_inner.py ├── test_metadata.py ├── test_plugin.py ├── test_schemas.py ├── test_source.py ├── test_util.py ├── util.py └── utils │ ├── __init__.py │ ├── test_cachito.py │ ├── test_hermeto.py │ ├── test_imageutil.py │ ├── test_koji.py │ ├── test_odcs.py │ ├── test_operator.py │ ├── test_pnc.py │ ├── test_remote_host.py │ ├── test_retries.py │ ├── test_rpm.py │ └── test_yum.py └── tox.ini /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=100 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.github/workflows/linters.yaml -------------------------------------------------------------------------------- /.github/workflows/unittests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.github/workflows/unittests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlint_style: -------------------------------------------------------------------------------- 1 | all 2 | rule 'MD013', :code_blocks => false 3 | 4 | -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- 1 | style "./.mdlint_style" 2 | 3 | -------------------------------------------------------------------------------- /.mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | python_version = 3.8 3 | -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/.pylintrc -------------------------------------------------------------------------------- /.tektonlintrc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | rules: # error | warning | off 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/README.md -------------------------------------------------------------------------------- /atomic_reactor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/__init__.py -------------------------------------------------------------------------------- /atomic_reactor/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/auth.py -------------------------------------------------------------------------------- /atomic_reactor/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/cli/__init__.py -------------------------------------------------------------------------------- /atomic_reactor/cli/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/cli/job.py -------------------------------------------------------------------------------- /atomic_reactor/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/cli/main.py -------------------------------------------------------------------------------- /atomic_reactor/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/cli/parser.py -------------------------------------------------------------------------------- /atomic_reactor/cli/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/cli/task.py -------------------------------------------------------------------------------- /atomic_reactor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/config.py -------------------------------------------------------------------------------- /atomic_reactor/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/constants.py -------------------------------------------------------------------------------- /atomic_reactor/dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/dirs.py -------------------------------------------------------------------------------- /atomic_reactor/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/download.py -------------------------------------------------------------------------------- /atomic_reactor/inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/inner.py -------------------------------------------------------------------------------- /atomic_reactor/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/metadata.py -------------------------------------------------------------------------------- /atomic_reactor/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugin.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/__init__.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_buildargs_in_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_buildargs_in_df.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_dockerfile.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_filesystem.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_flatpak_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_flatpak_labels.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_help.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_image_content_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_image_content_manifest.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/add_labels_in_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/add_labels_in_df.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/build_source_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/build_source_container.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/bump_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/bump_release.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/cancel_build_reservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/cancel_build_reservation.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/change_from_in_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/change_from_in_df.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/check_and_set_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/check_and_set_platforms.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/check_base_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/check_base_image.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/check_user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/check_user_settings.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/compare_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/compare_components.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/distribution_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/distribution_scope.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/export_operator_manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/export_operator_manifests.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/fetch_docker_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/fetch_docker_archive.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/fetch_maven_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/fetch_maven_artifacts.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/fetch_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/fetch_sources.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/flatpak_create_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/flatpak_create_dockerfile.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/flatpak_create_oci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/flatpak_create_oci.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/flatpak_update_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/flatpak_update_dockerfile.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/gather_builds_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/gather_builds_metadata.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/generate_sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/generate_sbom.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/group_manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/group_manifests.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/hermeto_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/hermeto_init.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/hermeto_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/hermeto_postprocess.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/hide_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/hide_files.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/inject_parent_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/inject_parent_image.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/inject_yum_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/inject_yum_repos.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/koji_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/koji_import.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/koji_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/koji_parent.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/koji_tag_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/koji_tag_build.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/maven_url_sources_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/maven_url_sources_metadata.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/pin_operator_digest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/pin_operator_digest.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/push_floating_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/push_floating_tags.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/pyrpkg_fetch_artefacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/pyrpkg_fetch_artefacts.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/resolve_composes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/resolve_composes.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/resolve_remote_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/resolve_remote_source.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/rpmqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/rpmqa.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/sendmail.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/store_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/store_metadata.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/tag_and_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/tag_and_push.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/tag_from_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/tag_from_config.py -------------------------------------------------------------------------------- /atomic_reactor/plugins/verify_media_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/plugins/verify_media_types.py -------------------------------------------------------------------------------- /atomic_reactor/schemas/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/config.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/content_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/content_manifest.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/content_sets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/content_sets.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/fetch-artifacts-nvr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/fetch-artifacts-nvr.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/fetch-artifacts-pnc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/fetch-artifacts-pnc.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/fetch-artifacts-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/fetch-artifacts-url.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/operator_csv_modifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/operator_csv_modifications.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/package_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/package_mapping.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/plugins.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/sbom-1.4.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/sbom-1.4.schema.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/source_containers_user_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/source_containers_user_params.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/user_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/user_params.json -------------------------------------------------------------------------------- /atomic_reactor/schemas/workflow_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/schemas/workflow_data.json -------------------------------------------------------------------------------- /atomic_reactor/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/source.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/__init__.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/binary.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/binary_container_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/binary_container_build.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/clone.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/common.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/plugin_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/plugin_based.py -------------------------------------------------------------------------------- /atomic_reactor/tasks/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/tasks/sources.py -------------------------------------------------------------------------------- /atomic_reactor/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/types.py -------------------------------------------------------------------------------- /atomic_reactor/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/util.py -------------------------------------------------------------------------------- /atomic_reactor/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/__init__.py -------------------------------------------------------------------------------- /atomic_reactor/utils/cachito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/cachito.py -------------------------------------------------------------------------------- /atomic_reactor/utils/flatpak_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/flatpak_util.py -------------------------------------------------------------------------------- /atomic_reactor/utils/hermeto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/hermeto.py -------------------------------------------------------------------------------- /atomic_reactor/utils/imageutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/imageutil.py -------------------------------------------------------------------------------- /atomic_reactor/utils/koji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/koji.py -------------------------------------------------------------------------------- /atomic_reactor/utils/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/manifest.py -------------------------------------------------------------------------------- /atomic_reactor/utils/odcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/odcs.py -------------------------------------------------------------------------------- /atomic_reactor/utils/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/operator.py -------------------------------------------------------------------------------- /atomic_reactor/utils/pnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/pnc.py -------------------------------------------------------------------------------- /atomic_reactor/utils/remote_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/remote_host.py -------------------------------------------------------------------------------- /atomic_reactor/utils/retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/retries.py -------------------------------------------------------------------------------- /atomic_reactor/utils/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/rpm.py -------------------------------------------------------------------------------- /atomic_reactor/utils/yum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/utils/yum.py -------------------------------------------------------------------------------- /atomic_reactor/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/atomic_reactor/version.py -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/apidocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/apidocs/Makefile -------------------------------------------------------------------------------- /docs/apidocs/text.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/apidocs/text.mako -------------------------------------------------------------------------------- /docs/apidocs/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/apidocs/top.md -------------------------------------------------------------------------------- /docs/base_images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/base_images.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/dev_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/dev_testing.md -------------------------------------------------------------------------------- /docs/flatpak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/flatpak.md -------------------------------------------------------------------------------- /docs/garbage_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/garbage_collection.md -------------------------------------------------------------------------------- /docs/koji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/koji.md -------------------------------------------------------------------------------- /docs/manpage/atomic-reactor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/manpage/atomic-reactor.1 -------------------------------------------------------------------------------- /docs/manpage/generate_manpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/manpage/generate_manpage.py -------------------------------------------------------------------------------- /docs/plugin_development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/plugin_development.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /docs/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/docs/tasks.md -------------------------------------------------------------------------------- /otel-requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/otel-requirements.in -------------------------------------------------------------------------------- /otel-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/otel-requirements.txt -------------------------------------------------------------------------------- /rel-eng/lib/osbsbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/rel-eng/lib/osbsbuilder.py -------------------------------------------------------------------------------- /rel-eng/packages/.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/rel-eng/packages/.readme -------------------------------------------------------------------------------- /rel-eng/packages/atomic-reactor: -------------------------------------------------------------------------------- 1 | 4.20.0-1 ./ 2 | -------------------------------------------------------------------------------- /rel-eng/releasers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/rel-eng/releasers.conf -------------------------------------------------------------------------------- /rel-eng/tito.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/rel-eng/tito.props -------------------------------------------------------------------------------- /rel-eng/version.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/rel-eng/version.template -------------------------------------------------------------------------------- /requirements-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-build.in -------------------------------------------------------------------------------- /requirements-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-build.txt -------------------------------------------------------------------------------- /requirements-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-devel.in -------------------------------------------------------------------------------- /requirements-devel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-devel.txt -------------------------------------------------------------------------------- /requirements-pip.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-pip.in -------------------------------------------------------------------------------- /requirements-pip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements-pip.txt -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/setup.py -------------------------------------------------------------------------------- /tekton/pipelines/binary-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/pipelines/binary-container.yaml -------------------------------------------------------------------------------- /tekton/pipelines/source-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/pipelines/source-container.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-build.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-cachito.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-cachito.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-exit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-exit.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-hermeto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-hermeto.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-init.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-postbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-postbuild.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-prebuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-prebuild.yaml -------------------------------------------------------------------------------- /tekton/tasks/binary-container-set-results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/binary-container-set-results.yaml -------------------------------------------------------------------------------- /tekton/tasks/clone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/clone.yaml -------------------------------------------------------------------------------- /tekton/tasks/source-container-build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/source-container-build.yaml -------------------------------------------------------------------------------- /tekton/tasks/source-container-exit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/source-container-exit.yaml -------------------------------------------------------------------------------- /tekton/tasks/source-container-set-results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tekton/tasks/source-container-set-results.yaml -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/test.sh -------------------------------------------------------------------------------- /tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/README -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/cli/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/cli/test_job.py -------------------------------------------------------------------------------- /tests/cli/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/cli/test_main.py -------------------------------------------------------------------------------- /tests/cli/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/cli/test_parser.py -------------------------------------------------------------------------------- /tests/cli/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/cli/test_task.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/constants.py -------------------------------------------------------------------------------- /tests/files/df-in-subdir/subdir/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM fedora 2 | RUN uname -a 3 | -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-build/Dockerfile -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-build/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-build/LICENSE -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-build/README.md -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-build/some/subdir/foo: -------------------------------------------------------------------------------- 1 | foo! 2 | -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-config/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM fedora:latest 2 | RUN uname -a && env 3 | -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-config/LICENSE -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-config/README.md -------------------------------------------------------------------------------- /tests/files/docker-hello-world-error-config/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-error-config/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-custom/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-custom/Dockerfile -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-custom/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-custom/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-custom_multiple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-custom_multiple/Dockerfile -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-custom_multiple/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-custom_multiple/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-scratch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-scratch/Dockerfile -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage-scratch/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage-scratch/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage/Dockerfile -------------------------------------------------------------------------------- /tests/files/docker-hello-world-multistage/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world-multistage/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM fedora:latest 2 | RUN uname -a && env 3 | -------------------------------------------------------------------------------- /tests/files/docker-hello-world/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world/LICENSE -------------------------------------------------------------------------------- /tests/files/docker-hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world/README.md -------------------------------------------------------------------------------- /tests/files/docker-hello-world/container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/docker-hello-world/container.yaml -------------------------------------------------------------------------------- /tests/files/docker-hello-world/some/subdir/foo: -------------------------------------------------------------------------------- 1 | foo! 2 | -------------------------------------------------------------------------------- /tests/files/example-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/example-build.json -------------------------------------------------------------------------------- /tests/files/example-koji-metadata-ppc64le.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/example-koji-metadata-ppc64le.json -------------------------------------------------------------------------------- /tests/files/example-koji-metadata-x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/files/example-koji-metadata-x86_64.json -------------------------------------------------------------------------------- /tests/flatpak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/flatpak.py -------------------------------------------------------------------------------- /tests/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mock_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/mock_env.py -------------------------------------------------------------------------------- /tests/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/__init__.py -------------------------------------------------------------------------------- /tests/plugins/test_add_buildargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_buildargs.py -------------------------------------------------------------------------------- /tests/plugins/test_add_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_dockerfile.py -------------------------------------------------------------------------------- /tests/plugins/test_add_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_filesystem.py -------------------------------------------------------------------------------- /tests/plugins/test_add_flatpak_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_flatpak_labels.py -------------------------------------------------------------------------------- /tests/plugins/test_add_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_help.py -------------------------------------------------------------------------------- /tests/plugins/test_add_image_content_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_image_content_manifest.py -------------------------------------------------------------------------------- /tests/plugins/test_add_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_add_labels.py -------------------------------------------------------------------------------- /tests/plugins/test_build_source_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_build_source_container.py -------------------------------------------------------------------------------- /tests/plugins/test_bump_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_bump_release.py -------------------------------------------------------------------------------- /tests/plugins/test_cancel_build_reservation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_cancel_build_reservation.py -------------------------------------------------------------------------------- /tests/plugins/test_change_from_in_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_change_from_in_df.py -------------------------------------------------------------------------------- /tests/plugins/test_check_and_set_platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_check_and_set_platforms.py -------------------------------------------------------------------------------- /tests/plugins/test_check_base_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_check_base_image.py -------------------------------------------------------------------------------- /tests/plugins/test_check_user_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_check_user_settings.py -------------------------------------------------------------------------------- /tests/plugins/test_compare_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_compare_components.py -------------------------------------------------------------------------------- /tests/plugins/test_distribution_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_distribution_scope.py -------------------------------------------------------------------------------- /tests/plugins/test_export_operator_manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_export_operator_manifests.py -------------------------------------------------------------------------------- /tests/plugins/test_fetch_docker_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_fetch_docker_archive.py -------------------------------------------------------------------------------- /tests/plugins/test_fetch_maven_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_fetch_maven_artifacts.py -------------------------------------------------------------------------------- /tests/plugins/test_fetch_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_fetch_sources.py -------------------------------------------------------------------------------- /tests/plugins/test_flatpak_create_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_flatpak_create_dockerfile.py -------------------------------------------------------------------------------- /tests/plugins/test_flatpak_create_oci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_flatpak_create_oci.py -------------------------------------------------------------------------------- /tests/plugins/test_flatpak_update_dockerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_flatpak_update_dockerfile.py -------------------------------------------------------------------------------- /tests/plugins/test_gather_builds_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_gather_builds_metadata.py -------------------------------------------------------------------------------- /tests/plugins/test_generate_sbom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_generate_sbom.py -------------------------------------------------------------------------------- /tests/plugins/test_group_manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_group_manifests.py -------------------------------------------------------------------------------- /tests/plugins/test_hermeto_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_hermeto_init.py -------------------------------------------------------------------------------- /tests/plugins/test_hermeto_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_hermeto_postprocess.py -------------------------------------------------------------------------------- /tests/plugins/test_hide_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_hide_files.py -------------------------------------------------------------------------------- /tests/plugins/test_inject_parent_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_inject_parent_image.py -------------------------------------------------------------------------------- /tests/plugins/test_inject_yum_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_inject_yum_repos.py -------------------------------------------------------------------------------- /tests/plugins/test_koji_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_koji_import.py -------------------------------------------------------------------------------- /tests/plugins/test_koji_parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_koji_parent.py -------------------------------------------------------------------------------- /tests/plugins/test_koji_tag_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_koji_tag_build.py -------------------------------------------------------------------------------- /tests/plugins/test_maven_url_sources_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_maven_url_sources_metadata.py -------------------------------------------------------------------------------- /tests/plugins/test_pin_operator_digests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_pin_operator_digests.py -------------------------------------------------------------------------------- /tests/plugins/test_push_floating_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_push_floating_tags.py -------------------------------------------------------------------------------- /tests/plugins/test_pyrpkg_fetch_artefacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_pyrpkg_fetch_artefacts.py -------------------------------------------------------------------------------- /tests/plugins/test_resolve_composes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_resolve_composes.py -------------------------------------------------------------------------------- /tests/plugins/test_resolve_remote_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_resolve_remote_source.py -------------------------------------------------------------------------------- /tests/plugins/test_rpmqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_rpmqa.py -------------------------------------------------------------------------------- /tests/plugins/test_sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_sendmail.py -------------------------------------------------------------------------------- /tests/plugins/test_store_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_store_metadata.py -------------------------------------------------------------------------------- /tests/plugins/test_tag_and_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_tag_and_push.py -------------------------------------------------------------------------------- /tests/plugins/test_tag_from_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_tag_from_config.py -------------------------------------------------------------------------------- /tests/plugins/test_verify_media_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/plugins/test_verify_media_types.py -------------------------------------------------------------------------------- /tests/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/requirements.in -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/retry_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/retry_mock.py -------------------------------------------------------------------------------- /tests/stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/stubs.py -------------------------------------------------------------------------------- /tests/tasks/test_binary_container_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/tasks/test_binary_container_build.py -------------------------------------------------------------------------------- /tests/tasks/test_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/tasks/test_clone.py -------------------------------------------------------------------------------- /tests/tasks/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/tasks/test_common.py -------------------------------------------------------------------------------- /tests/tasks/test_plugin_based.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/tasks/test_plugin_based.py -------------------------------------------------------------------------------- /tests/tasks/test_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/tasks/test_sources.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_dirs.py -------------------------------------------------------------------------------- /tests/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_download.py -------------------------------------------------------------------------------- /tests/test_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_inner.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_plugin.py -------------------------------------------------------------------------------- /tests/test_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_schemas.py -------------------------------------------------------------------------------- /tests/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_source.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/util.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/__init__.py -------------------------------------------------------------------------------- /tests/utils/test_cachito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_cachito.py -------------------------------------------------------------------------------- /tests/utils/test_hermeto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_hermeto.py -------------------------------------------------------------------------------- /tests/utils/test_imageutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_imageutil.py -------------------------------------------------------------------------------- /tests/utils/test_koji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_koji.py -------------------------------------------------------------------------------- /tests/utils/test_odcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_odcs.py -------------------------------------------------------------------------------- /tests/utils/test_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_operator.py -------------------------------------------------------------------------------- /tests/utils/test_pnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_pnc.py -------------------------------------------------------------------------------- /tests/utils/test_remote_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_remote_host.py -------------------------------------------------------------------------------- /tests/utils/test_retries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_retries.py -------------------------------------------------------------------------------- /tests/utils/test_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_rpm.py -------------------------------------------------------------------------------- /tests/utils/test_yum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tests/utils/test_yum.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/containerbuildsystem/atomic-reactor/HEAD/tox.ini --------------------------------------------------------------------------------