├── .copr └── Makefile ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── pr-welcome-msg.yml │ ├── reuse-copr-build.yml │ ├── reuse-tests-8to9.yml │ ├── tmt-tests.yml │ └── unit-tests.yml ├── .gitignore ├── .packit.yaml ├── .pylintrc ├── .readthedocs.yaml ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── Makefile ├── README.md ├── dev-images ├── docker │ └── Dockerfile └── vagrant │ └── Vagrantfile ├── docs ├── Makefile └── source │ ├── _static │ ├── css │ │ ├── asciinema-player.css │ │ └── custom.css │ ├── fonts │ │ └── PowerlineSymbols.otf │ ├── images │ │ ├── framework-arch-overview.png │ │ ├── snactor256.png │ │ └── snactor64.png │ ├── js │ │ └── asciinema-player.js │ └── screencasts │ │ ├── create-actor.gif │ │ ├── create-actor.json │ │ ├── create-model.gif │ │ ├── create-model.json │ │ ├── create-project.gif │ │ ├── create-project.json │ │ ├── create-tag.gif │ │ ├── create-tag.json │ │ ├── create-topic.gif │ │ ├── create-topic.json │ │ ├── discovery.gif │ │ ├── discovery.json │ │ ├── install.gif │ │ ├── install.json │ │ ├── messaging.json │ │ └── repo-linking.cast │ ├── best-practices.md │ ├── build-schema.md │ ├── building-blocks-and-architecture.md │ ├── compatibility-with-leapp-repository.md │ ├── conf.py │ ├── contributing.md │ ├── dependencies.md │ ├── deprecation.md │ ├── devenv-install.md │ ├── faq.md │ ├── index.rst │ ├── libraries-and-api.md │ ├── packaging-and-dependencies.rst │ ├── pydoc │ ├── leapp.actors.rst │ ├── leapp.dialogs.rst │ ├── leapp.libraries.actor.rst │ ├── leapp.libraries.common.rst │ ├── leapp.libraries.rst │ ├── leapp.libraries.stdlib.rst │ ├── leapp.logger.rst │ ├── leapp.messaging.rst │ ├── leapp.models.fields.rst │ ├── leapp.models.rst │ ├── leapp.reporting.rst │ ├── leapp.repository.rst │ ├── leapp.rst │ ├── leapp.tags.rst │ ├── leapp.topics.rst │ ├── leapp.utils.audit.rst │ ├── leapp.utils.rst │ └── leapp.workflows.rst │ ├── repository-dir-layout.md │ ├── test-actors.md │ └── tutorials │ ├── create-repository.md │ ├── debugging.md │ ├── deprecation.md │ ├── dialogs.md │ ├── first-actor.md │ ├── index.rst │ ├── messaging.md │ ├── repo-linking.md │ ├── unit-testing.md │ ├── workflow-apis.md │ └── working-with-workflows.md ├── etc └── leapp │ ├── leapp.conf │ └── logger.conf ├── leapp ├── __init__.py ├── __version__.py ├── actors │ ├── __init__.py │ └── config.py ├── cli │ ├── __init__.py │ ├── __main__.py │ └── commands │ │ └── __init__.py ├── compat.py ├── compatpy2only │ └── __init__.py ├── config.py ├── configs │ ├── __init__.py │ ├── actor │ │ └── __init__.py │ └── common │ │ └── __init__.py ├── dialogs │ ├── __init__.py │ ├── components.py │ ├── dialog.py │ ├── message.py │ └── renderer.py ├── exceptions.py ├── libraries │ ├── __init__.py │ ├── actor │ │ └── __init__.py │ ├── common │ │ └── __init__.py │ └── stdlib │ │ ├── __init__.py │ │ ├── api.py │ │ ├── call.py │ │ ├── config.py │ │ └── eventloop.py ├── logger │ └── __init__.py ├── messaging │ ├── __init__.py │ ├── answerstore.py │ ├── commands.py │ └── inprocess.py ├── models │ ├── __init__.py │ ├── error_severity.py │ ├── fields │ │ └── __init__.py │ └── utils.py ├── reporting │ └── __init__.py ├── repository │ ├── __init__.py │ ├── actor_definition.py │ ├── definition.py │ ├── manager.py │ └── scan.py ├── snactor │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── discover.py │ │ ├── messages │ │ │ └── __init__.py │ │ ├── new_actor.py │ │ ├── new_model.py │ │ ├── new_project.py │ │ ├── new_tag.py │ │ ├── new_topic.py │ │ ├── repo │ │ │ └── __init__.py │ │ ├── run.py │ │ └── workflow │ │ │ ├── __init__.py │ │ │ ├── new.py │ │ │ ├── run.py │ │ │ └── sanity_check.py │ ├── context.py │ ├── fixture.py │ └── utils.py ├── tags │ └── __init__.py ├── topics │ └── __init__.py ├── utils │ ├── __init__.py │ ├── actorapi.py │ ├── audit │ │ ├── __init__.py │ │ └── contextclone.py │ ├── clicmd.py │ ├── deprecation.py │ ├── i18n.py │ ├── libraryfinder.py │ ├── lock.py │ ├── meta.py │ ├── output.py │ ├── path.py │ ├── report.py │ ├── repository.py │ └── workarounds │ │ ├── __init__.py │ │ ├── fqdn.py │ │ ├── mp.py │ │ └── resources.py └── workflows │ ├── __init__.py │ ├── api │ └── __init__.py │ ├── flags.py │ ├── phaseactors.py │ ├── phases.py │ ├── policies.py │ └── tagfilters.py ├── man ├── leapp.1 └── snactor.1 ├── packaging └── leapp.spec ├── renovate.json ├── report-schema-v100.json ├── report-schema-v110.json ├── report-schema-v120.json ├── requirements-docs.txt ├── requirements-tests.txt ├── requirements.txt ├── res ├── container-builds │ ├── Containerfile.fedora_generic │ ├── Containerfile.ubi8 │ └── Containerfile.ubi9 ├── container-tests │ ├── Containerfile.ubi10 │ ├── Containerfile.ubi10-lint │ ├── Containerfile.ubi8 │ ├── Containerfile.ubi8-lint │ ├── Containerfile.ubi9 │ └── Containerfile.ubi9-lint └── schema │ ├── audit-layout.sql │ ├── embed.py │ └── migrations │ ├── 0000-channel-topic-rename.sql │ ├── 0001-add-execution-kind-column.sql │ ├── 0002-add-metadata-dialog-tables.sql │ └── 0003-add-actor-configuration.sql ├── setup.cfg ├── setup.py ├── test-questions.py ├── tests ├── data │ ├── actor-api-tests │ │ ├── .leapp │ │ │ ├── info │ │ │ └── leapp.conf │ │ ├── actors │ │ │ ├── first │ │ │ │ ├── actor.py │ │ │ │ ├── files │ │ │ │ │ ├── directory │ │ │ │ │ │ └── first-actor │ │ │ │ │ └── duplicate │ │ │ │ └── tools │ │ │ │ │ ├── directory │ │ │ │ │ ├── exec_script │ │ │ │ │ └── nonexec_script │ │ │ │ │ └── first-actor │ │ │ └── second │ │ │ │ ├── actor.py │ │ │ │ ├── files │ │ │ │ ├── directory │ │ │ │ │ └── second-actor │ │ │ │ └── duplicate │ │ │ │ └── tools │ │ │ │ ├── directory │ │ │ │ ├── exec_script │ │ │ │ └── nonexec_script │ │ │ │ └── second-actor │ │ ├── files │ │ │ ├── directory │ │ │ │ └── repository │ │ │ └── duplicate │ │ ├── models │ │ │ └── apitest.py │ │ ├── tags │ │ │ └── actorfileapi.py │ │ ├── tools │ │ │ ├── directory │ │ │ │ ├── exec_script │ │ │ │ └── nonexec_script │ │ │ └── repository │ │ └── topics │ │ │ └── apitest.py │ ├── call_data │ │ └── panagrams │ ├── deprecation-tests │ │ ├── .leapp │ │ │ ├── info │ │ │ └── leapp.conf │ │ ├── actors │ │ │ └── deprecationtests │ │ │ │ └── actor.py │ │ ├── libraries │ │ │ └── deprecation.py │ │ ├── models │ │ │ └── deprecatedmodel.py │ │ ├── tags │ │ │ ├── deprecationphasetag.py │ │ │ └── deprecationworkflow.py │ │ ├── topics │ │ │ └── deprecation.py │ │ └── workflows │ │ │ └── deprecation_workflow.py │ ├── leapp-rerun-tests-repos │ │ ├── ipu-rerun-repo │ │ │ ├── .leapp │ │ │ │ ├── info │ │ │ │ └── leapp.conf │ │ │ ├── actors │ │ │ │ ├── firstbootactor │ │ │ │ │ └── actor.py │ │ │ │ ├── phaseaactor │ │ │ │ │ └── actor.py │ │ │ │ ├── phasebactor │ │ │ │ │ └── actor.py │ │ │ │ ├── rerunactor │ │ │ │ │ └── actor.py │ │ │ │ └── rerunactorother │ │ │ │ │ └── actor.py │ │ │ ├── tags │ │ │ │ ├── firstboot.py │ │ │ │ ├── inplaceupgradeworkflow.py │ │ │ │ ├── phasea.py │ │ │ │ ├── phaseb.py │ │ │ │ ├── rerunverify.py │ │ │ │ └── rerunverifyother.py │ │ │ └── workflows │ │ │ │ └── inplace_upgrade.py │ │ └── noroot_leapp.py │ ├── leappdb-tests │ │ ├── .leapp │ │ │ ├── info │ │ │ └── leapp.conf │ │ ├── actors │ │ │ ├── configprovider │ │ │ │ └── actor.py │ │ │ ├── dialogactor │ │ │ │ └── actor.py │ │ │ └── exitstatusactor │ │ │ │ └── actor.py │ │ ├── libraries │ │ │ └── test_helper.py │ │ ├── models │ │ │ └── unittestconfig.py │ │ ├── tags │ │ │ ├── firstphase.py │ │ │ ├── secondphase.py │ │ │ └── unittestworkflow.py │ │ ├── topics │ │ │ └── config.py │ │ └── workflows │ │ │ └── unit_test.py │ ├── report-schema │ │ ├── leapp-report-stable-key.json │ │ └── schemas │ │ │ ├── report-schema-v100.json │ │ │ └── report-schema-v110.json │ ├── workflow-api-tests │ │ ├── .leapp │ │ │ ├── info │ │ │ ├── leapp.conf │ │ │ └── logger.conf │ │ ├── actors │ │ │ ├── apiv1test │ │ │ │ └── actor.py │ │ │ ├── apiv2test │ │ │ │ └── actor.py │ │ │ ├── apiv3test │ │ │ │ └── actor.py │ │ │ ├── depcheck │ │ │ │ └── actor.py │ │ │ ├── depcheckconsumes │ │ │ │ └── actor.py │ │ │ ├── depcheckproduces │ │ │ │ └── actor.py │ │ │ └── secondphaseactor │ │ │ │ └── actor.py │ │ ├── apis │ │ │ ├── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── depcheck.py │ │ │ │ └── testapi.py │ │ │ ├── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── newapi.py │ │ │ │ └── testapi.py │ │ │ └── v3 │ │ │ │ ├── __init__.py │ │ │ │ └── testapi.py │ │ ├── models │ │ │ ├── depcheck1.py │ │ │ ├── depcheck2.py │ │ │ ├── depcheck3.py │ │ │ └── depcheck4.py │ │ ├── tags │ │ │ ├── firstphase.py │ │ │ ├── secondphase.py │ │ │ └── workflowapitestworkflow.py │ │ ├── topics │ │ │ └── workflowapitopic.py │ │ └── workflows │ │ │ └── workflow_api_test.py │ └── workflow-tests │ │ ├── .leapp │ │ ├── info │ │ └── leapp.conf │ │ ├── actors │ │ ├── aftercommonthirdactor │ │ │ └── actor.py │ │ ├── afterthirdactor │ │ │ └── actor.py │ │ ├── beforecommonthirdactor │ │ │ └── actor.py │ │ ├── beforethirdactor │ │ │ └── actor.py │ │ ├── configprovider │ │ │ └── actor.py │ │ ├── fifthactor │ │ │ └── actor.py │ │ ├── firstactor │ │ │ └── actor.py │ │ ├── fourthactor │ │ │ └── actor.py │ │ ├── notscheduledfourthactor │ │ │ └── actor.py │ │ ├── secondactor │ │ │ └── actor.py │ │ ├── secondcommonactor │ │ │ └── actor.py │ │ └── thirdactor │ │ │ └── actor.py │ │ ├── libraries │ │ └── test_helper.py │ │ ├── models │ │ └── unittestconfig.py │ │ ├── tags │ │ ├── fifthphase.py │ │ ├── firstphase.py │ │ ├── fourthphase.py │ │ ├── secondphase.py │ │ ├── thirdphase.py │ │ └── unittestworkflow.py │ │ ├── topics │ │ └── config.py │ │ └── workflows │ │ └── unit_test.py └── scripts │ ├── conftest.py │ ├── helpers.py │ ├── test_actor_api.py │ ├── test_actor_config_db.py │ ├── test_answerstore.py │ ├── test_audit.py │ ├── test_deprecation.py │ ├── test_dialog_db.py │ ├── test_exit_status.py │ ├── test_messaging.py │ ├── test_metadata.py │ ├── test_models.py │ ├── test_phaseactors.py │ ├── test_reporting.py │ ├── test_repository.py │ ├── test_repository_actor_definition.py │ ├── test_rerun.py │ ├── test_serialization.py │ ├── test_snactor.py │ ├── test_stdlib.py │ ├── test_stdlib_call.py │ ├── test_stdlib_call_audit.py │ ├── test_tags.py │ ├── test_topics.py │ ├── test_utils_meta.py │ ├── test_utils_output.py │ ├── test_utils_project.py │ ├── test_utils_report.py │ ├── test_workarounds_application.py │ ├── test_workflow.py │ └── test_workflow_apis.py └── utils └── get_latest_copr_build /.copr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.copr/Makefile -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/pr-welcome-msg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/workflows/pr-welcome-msg.yml -------------------------------------------------------------------------------- /.github/workflows/reuse-copr-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/workflows/reuse-copr-build.yml -------------------------------------------------------------------------------- /.github/workflows/reuse-tests-8to9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/workflows/reuse-tests-8to9.yml -------------------------------------------------------------------------------- /.github/workflows/tmt-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/workflows/tmt-tests.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.gitignore -------------------------------------------------------------------------------- /.packit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.packit.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/README.md -------------------------------------------------------------------------------- /dev-images/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/dev-images/docker/Dockerfile -------------------------------------------------------------------------------- /dev-images/vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/dev-images/vagrant/Vagrantfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/_static/css/asciinema-player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/css/asciinema-player.css -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/css/custom.css -------------------------------------------------------------------------------- /docs/source/_static/fonts/PowerlineSymbols.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/fonts/PowerlineSymbols.otf -------------------------------------------------------------------------------- /docs/source/_static/images/framework-arch-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/images/framework-arch-overview.png -------------------------------------------------------------------------------- /docs/source/_static/images/snactor256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/images/snactor256.png -------------------------------------------------------------------------------- /docs/source/_static/images/snactor64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/images/snactor64.png -------------------------------------------------------------------------------- /docs/source/_static/js/asciinema-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/js/asciinema-player.js -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-actor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-actor.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-actor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-actor.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-model.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-model.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-model.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-project.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-project.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-tag.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-tag.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-topic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-topic.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/create-topic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/create-topic.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/discovery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/discovery.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/discovery.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/install.gif -------------------------------------------------------------------------------- /docs/source/_static/screencasts/install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/install.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/messaging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/messaging.json -------------------------------------------------------------------------------- /docs/source/_static/screencasts/repo-linking.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/_static/screencasts/repo-linking.cast -------------------------------------------------------------------------------- /docs/source/best-practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/best-practices.md -------------------------------------------------------------------------------- /docs/source/build-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/build-schema.md -------------------------------------------------------------------------------- /docs/source/building-blocks-and-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/building-blocks-and-architecture.md -------------------------------------------------------------------------------- /docs/source/compatibility-with-leapp-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/compatibility-with-leapp-repository.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/contributing.md -------------------------------------------------------------------------------- /docs/source/dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/dependencies.md -------------------------------------------------------------------------------- /docs/source/deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/deprecation.md -------------------------------------------------------------------------------- /docs/source/devenv-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/devenv-install.md -------------------------------------------------------------------------------- /docs/source/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/faq.md -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/libraries-and-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/libraries-and-api.md -------------------------------------------------------------------------------- /docs/source/packaging-and-dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/packaging-and-dependencies.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.actors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.actors.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.dialogs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.dialogs.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.libraries.actor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.libraries.actor.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.libraries.common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.libraries.common.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.libraries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.libraries.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.libraries.stdlib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.libraries.stdlib.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.logger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.logger.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.messaging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.messaging.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.models.fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.models.fields.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.models.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.reporting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.reporting.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.repository.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.repository.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.tags.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.topics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.topics.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.utils.audit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.utils.audit.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.utils.rst -------------------------------------------------------------------------------- /docs/source/pydoc/leapp.workflows.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/pydoc/leapp.workflows.rst -------------------------------------------------------------------------------- /docs/source/repository-dir-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/repository-dir-layout.md -------------------------------------------------------------------------------- /docs/source/test-actors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/test-actors.md -------------------------------------------------------------------------------- /docs/source/tutorials/create-repository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/create-repository.md -------------------------------------------------------------------------------- /docs/source/tutorials/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/debugging.md -------------------------------------------------------------------------------- /docs/source/tutorials/deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/deprecation.md -------------------------------------------------------------------------------- /docs/source/tutorials/dialogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/dialogs.md -------------------------------------------------------------------------------- /docs/source/tutorials/first-actor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/first-actor.md -------------------------------------------------------------------------------- /docs/source/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/index.rst -------------------------------------------------------------------------------- /docs/source/tutorials/messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/messaging.md -------------------------------------------------------------------------------- /docs/source/tutorials/repo-linking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/repo-linking.md -------------------------------------------------------------------------------- /docs/source/tutorials/unit-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/unit-testing.md -------------------------------------------------------------------------------- /docs/source/tutorials/workflow-apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/workflow-apis.md -------------------------------------------------------------------------------- /docs/source/tutorials/working-with-workflows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/docs/source/tutorials/working-with-workflows.md -------------------------------------------------------------------------------- /etc/leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/etc/leapp/leapp.conf -------------------------------------------------------------------------------- /etc/leapp/logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/etc/leapp/logger.conf -------------------------------------------------------------------------------- /leapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/__init__.py -------------------------------------------------------------------------------- /leapp/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/__version__.py -------------------------------------------------------------------------------- /leapp/actors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/actors/__init__.py -------------------------------------------------------------------------------- /leapp/actors/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/actors/config.py -------------------------------------------------------------------------------- /leapp/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/cli/__init__.py -------------------------------------------------------------------------------- /leapp/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/cli/__main__.py -------------------------------------------------------------------------------- /leapp/cli/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leapp/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/compat.py -------------------------------------------------------------------------------- /leapp/compatpy2only/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/compatpy2only/__init__.py -------------------------------------------------------------------------------- /leapp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/config.py -------------------------------------------------------------------------------- /leapp/configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leapp/configs/actor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/configs/actor/__init__.py -------------------------------------------------------------------------------- /leapp/configs/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/configs/common/__init__.py -------------------------------------------------------------------------------- /leapp/dialogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/dialogs/__init__.py -------------------------------------------------------------------------------- /leapp/dialogs/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/dialogs/components.py -------------------------------------------------------------------------------- /leapp/dialogs/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/dialogs/dialog.py -------------------------------------------------------------------------------- /leapp/dialogs/message.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leapp/dialogs/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/dialogs/renderer.py -------------------------------------------------------------------------------- /leapp/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/exceptions.py -------------------------------------------------------------------------------- /leapp/libraries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leapp/libraries/actor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/actor/__init__.py -------------------------------------------------------------------------------- /leapp/libraries/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/common/__init__.py -------------------------------------------------------------------------------- /leapp/libraries/stdlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/stdlib/__init__.py -------------------------------------------------------------------------------- /leapp/libraries/stdlib/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/stdlib/api.py -------------------------------------------------------------------------------- /leapp/libraries/stdlib/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/stdlib/call.py -------------------------------------------------------------------------------- /leapp/libraries/stdlib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/stdlib/config.py -------------------------------------------------------------------------------- /leapp/libraries/stdlib/eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/libraries/stdlib/eventloop.py -------------------------------------------------------------------------------- /leapp/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/logger/__init__.py -------------------------------------------------------------------------------- /leapp/messaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/messaging/__init__.py -------------------------------------------------------------------------------- /leapp/messaging/answerstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/messaging/answerstore.py -------------------------------------------------------------------------------- /leapp/messaging/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/messaging/commands.py -------------------------------------------------------------------------------- /leapp/messaging/inprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/messaging/inprocess.py -------------------------------------------------------------------------------- /leapp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/models/__init__.py -------------------------------------------------------------------------------- /leapp/models/error_severity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/models/error_severity.py -------------------------------------------------------------------------------- /leapp/models/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/models/fields/__init__.py -------------------------------------------------------------------------------- /leapp/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/models/utils.py -------------------------------------------------------------------------------- /leapp/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/reporting/__init__.py -------------------------------------------------------------------------------- /leapp/repository/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/repository/__init__.py -------------------------------------------------------------------------------- /leapp/repository/actor_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/repository/actor_definition.py -------------------------------------------------------------------------------- /leapp/repository/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/repository/definition.py -------------------------------------------------------------------------------- /leapp/repository/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/repository/manager.py -------------------------------------------------------------------------------- /leapp/repository/scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/repository/scan.py -------------------------------------------------------------------------------- /leapp/snactor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/__init__.py -------------------------------------------------------------------------------- /leapp/snactor/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /leapp/snactor/commands/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/discover.py -------------------------------------------------------------------------------- /leapp/snactor/commands/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/messages/__init__.py -------------------------------------------------------------------------------- /leapp/snactor/commands/new_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/new_actor.py -------------------------------------------------------------------------------- /leapp/snactor/commands/new_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/new_model.py -------------------------------------------------------------------------------- /leapp/snactor/commands/new_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/new_project.py -------------------------------------------------------------------------------- /leapp/snactor/commands/new_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/new_tag.py -------------------------------------------------------------------------------- /leapp/snactor/commands/new_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/new_topic.py -------------------------------------------------------------------------------- /leapp/snactor/commands/repo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/repo/__init__.py -------------------------------------------------------------------------------- /leapp/snactor/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/run.py -------------------------------------------------------------------------------- /leapp/snactor/commands/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/workflow/__init__.py -------------------------------------------------------------------------------- /leapp/snactor/commands/workflow/new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/workflow/new.py -------------------------------------------------------------------------------- /leapp/snactor/commands/workflow/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/workflow/run.py -------------------------------------------------------------------------------- /leapp/snactor/commands/workflow/sanity_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/commands/workflow/sanity_check.py -------------------------------------------------------------------------------- /leapp/snactor/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/context.py -------------------------------------------------------------------------------- /leapp/snactor/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/fixture.py -------------------------------------------------------------------------------- /leapp/snactor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/snactor/utils.py -------------------------------------------------------------------------------- /leapp/tags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/tags/__init__.py -------------------------------------------------------------------------------- /leapp/topics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/topics/__init__.py -------------------------------------------------------------------------------- /leapp/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/__init__.py -------------------------------------------------------------------------------- /leapp/utils/actorapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/actorapi.py -------------------------------------------------------------------------------- /leapp/utils/audit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/audit/__init__.py -------------------------------------------------------------------------------- /leapp/utils/audit/contextclone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/audit/contextclone.py -------------------------------------------------------------------------------- /leapp/utils/clicmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/clicmd.py -------------------------------------------------------------------------------- /leapp/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/deprecation.py -------------------------------------------------------------------------------- /leapp/utils/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/i18n.py -------------------------------------------------------------------------------- /leapp/utils/libraryfinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/libraryfinder.py -------------------------------------------------------------------------------- /leapp/utils/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/lock.py -------------------------------------------------------------------------------- /leapp/utils/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/meta.py -------------------------------------------------------------------------------- /leapp/utils/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/output.py -------------------------------------------------------------------------------- /leapp/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/path.py -------------------------------------------------------------------------------- /leapp/utils/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/report.py -------------------------------------------------------------------------------- /leapp/utils/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/repository.py -------------------------------------------------------------------------------- /leapp/utils/workarounds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/workarounds/__init__.py -------------------------------------------------------------------------------- /leapp/utils/workarounds/fqdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/workarounds/fqdn.py -------------------------------------------------------------------------------- /leapp/utils/workarounds/mp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/workarounds/mp.py -------------------------------------------------------------------------------- /leapp/utils/workarounds/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/utils/workarounds/resources.py -------------------------------------------------------------------------------- /leapp/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/__init__.py -------------------------------------------------------------------------------- /leapp/workflows/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/api/__init__.py -------------------------------------------------------------------------------- /leapp/workflows/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/flags.py -------------------------------------------------------------------------------- /leapp/workflows/phaseactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/phaseactors.py -------------------------------------------------------------------------------- /leapp/workflows/phases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/phases.py -------------------------------------------------------------------------------- /leapp/workflows/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/policies.py -------------------------------------------------------------------------------- /leapp/workflows/tagfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/leapp/workflows/tagfilters.py -------------------------------------------------------------------------------- /man/leapp.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/man/leapp.1 -------------------------------------------------------------------------------- /man/snactor.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/man/snactor.1 -------------------------------------------------------------------------------- /packaging/leapp.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/packaging/leapp.spec -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/renovate.json -------------------------------------------------------------------------------- /report-schema-v100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/report-schema-v100.json -------------------------------------------------------------------------------- /report-schema-v110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/report-schema-v110.json -------------------------------------------------------------------------------- /report-schema-v120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/report-schema-v120.json -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/requirements-tests.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | six==1.12 2 | requests 3 | PyYAML 4 | -------------------------------------------------------------------------------- /res/container-builds/Containerfile.fedora_generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-builds/Containerfile.fedora_generic -------------------------------------------------------------------------------- /res/container-builds/Containerfile.ubi8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-builds/Containerfile.ubi8 -------------------------------------------------------------------------------- /res/container-builds/Containerfile.ubi9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-builds/Containerfile.ubi9 -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi10 -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi10-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi10-lint -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi8 -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi8-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi8-lint -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi9 -------------------------------------------------------------------------------- /res/container-tests/Containerfile.ubi9-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/container-tests/Containerfile.ubi9-lint -------------------------------------------------------------------------------- /res/schema/audit-layout.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/audit-layout.sql -------------------------------------------------------------------------------- /res/schema/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/embed.py -------------------------------------------------------------------------------- /res/schema/migrations/0000-channel-topic-rename.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/migrations/0000-channel-topic-rename.sql -------------------------------------------------------------------------------- /res/schema/migrations/0001-add-execution-kind-column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/migrations/0001-add-execution-kind-column.sql -------------------------------------------------------------------------------- /res/schema/migrations/0002-add-metadata-dialog-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/migrations/0002-add-metadata-dialog-tables.sql -------------------------------------------------------------------------------- /res/schema/migrations/0003-add-actor-configuration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/res/schema/migrations/0003-add-actor-configuration.sql -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/setup.py -------------------------------------------------------------------------------- /test-questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/test-questions.py -------------------------------------------------------------------------------- /tests/data/actor-api-tests/.leapp/info: -------------------------------------------------------------------------------- 1 | {"name": "actor-api-tests", "id": "e2b55c03-1c07-4cb6-bab8-cca7315f86f0"} 2 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/actors/first/actor.py -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/files/directory/first-actor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/files/duplicate: -------------------------------------------------------------------------------- 1 | first-actor 2 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/tools/directory/exec_script: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'first-actor' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/tools/directory/nonexec_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/actors/first/tools/directory/nonexec_script -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/first/tools/first-actor: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'first-actor' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/actors/second/actor.py -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/files/directory/second-actor: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/files/duplicate: -------------------------------------------------------------------------------- 1 | second-actor 2 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/tools/directory/exec_script: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'second-actor' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/tools/directory/nonexec_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/actors/second/tools/directory/nonexec_script -------------------------------------------------------------------------------- /tests/data/actor-api-tests/actors/second/tools/second-actor: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'second-actor' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/files/directory/repository: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/files/duplicate: -------------------------------------------------------------------------------- 1 | repository 2 | -------------------------------------------------------------------------------- /tests/data/actor-api-tests/models/apitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/models/apitest.py -------------------------------------------------------------------------------- /tests/data/actor-api-tests/tags/actorfileapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/tags/actorfileapi.py -------------------------------------------------------------------------------- /tests/data/actor-api-tests/tools/directory/exec_script: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'repository' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/tools/directory/nonexec_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/tools/directory/nonexec_script -------------------------------------------------------------------------------- /tests/data/actor-api-tests/tools/repository: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo 'repository' -------------------------------------------------------------------------------- /tests/data/actor-api-tests/topics/apitest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/actor-api-tests/topics/apitest.py -------------------------------------------------------------------------------- /tests/data/call_data/panagrams: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/call_data/panagrams -------------------------------------------------------------------------------- /tests/data/deprecation-tests/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/.leapp/info -------------------------------------------------------------------------------- /tests/data/deprecation-tests/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/deprecation-tests/actors/deprecationtests/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/actors/deprecationtests/actor.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/libraries/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/libraries/deprecation.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/models/deprecatedmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/models/deprecatedmodel.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/tags/deprecationphasetag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/tags/deprecationphasetag.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/tags/deprecationworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/tags/deprecationworkflow.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/topics/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/topics/deprecation.py -------------------------------------------------------------------------------- /tests/data/deprecation-tests/workflows/deprecation_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/deprecation-tests/workflows/deprecation_workflow.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/.leapp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/.leapp/info -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/firstbootactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/firstbootactor/actor.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/phaseaactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/phaseaactor/actor.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/phasebactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/phasebactor/actor.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/rerunactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/rerunactor/actor.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/rerunactorother/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/actors/rerunactorother/actor.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/firstboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/firstboot.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/inplaceupgradeworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/inplaceupgradeworkflow.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/phasea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/phasea.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/phaseb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/phaseb.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/rerunverify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/rerunverify.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/rerunverifyother.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/tags/rerunverifyother.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/workflows/inplace_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/ipu-rerun-repo/workflows/inplace_upgrade.py -------------------------------------------------------------------------------- /tests/data/leapp-rerun-tests-repos/noroot_leapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leapp-rerun-tests-repos/noroot_leapp.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/.leapp/info: -------------------------------------------------------------------------------- 1 | {"name": "workflow-tests", "id": "07005707-67bc-46e5-9732-a10fb13d4e7d"} -------------------------------------------------------------------------------- /tests/data/leappdb-tests/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/leappdb-tests/actors/configprovider/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/actors/configprovider/actor.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/actors/dialogactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/actors/dialogactor/actor.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/actors/exitstatusactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/actors/exitstatusactor/actor.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/libraries/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/libraries/test_helper.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/models/unittestconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/models/unittestconfig.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/tags/firstphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/tags/firstphase.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/tags/secondphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/tags/secondphase.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/tags/unittestworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/tags/unittestworkflow.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/topics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/topics/config.py -------------------------------------------------------------------------------- /tests/data/leappdb-tests/workflows/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/leappdb-tests/workflows/unit_test.py -------------------------------------------------------------------------------- /tests/data/report-schema/leapp-report-stable-key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/report-schema/leapp-report-stable-key.json -------------------------------------------------------------------------------- /tests/data/report-schema/schemas/report-schema-v100.json: -------------------------------------------------------------------------------- 1 | ../../../../report-schema-v100.json -------------------------------------------------------------------------------- /tests/data/report-schema/schemas/report-schema-v110.json: -------------------------------------------------------------------------------- 1 | ../../../../report-schema-v110.json -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/.leapp/info: -------------------------------------------------------------------------------- 1 | {"name": "workflow-api-tests", "id": "e8bfeffe-9131-4792-bcc3-760628e0fc4b"} -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/.leapp/logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/.leapp/logger.conf -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/apiv1test/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/apiv1test/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/apiv2test/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/apiv2test/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/apiv3test/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/apiv3test/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/depcheck/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/depcheck/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/depcheckconsumes/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/depcheckconsumes/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/depcheckproduces/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/depcheckproduces/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/actors/secondphaseactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/actors/secondphaseactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v1/__init__.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v1/depcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v1/depcheck.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v1/testapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v1/testapi.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v2/__init__.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v2/newapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v2/newapi.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v2/testapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v2/testapi.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v3/__init__.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/apis/v3/testapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/apis/v3/testapi.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/models/depcheck1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/models/depcheck1.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/models/depcheck2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/models/depcheck2.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/models/depcheck3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/models/depcheck3.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/models/depcheck4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/models/depcheck4.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/tags/firstphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/tags/firstphase.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/tags/secondphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/tags/secondphase.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/tags/workflowapitestworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/tags/workflowapitestworkflow.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/topics/workflowapitopic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/topics/workflowapitopic.py -------------------------------------------------------------------------------- /tests/data/workflow-api-tests/workflows/workflow_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-api-tests/workflows/workflow_api_test.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/.leapp/info: -------------------------------------------------------------------------------- 1 | {"name": "workflow-tests", "id": "07005707-67bc-46e5-9732-a10fb13d4e7d"} -------------------------------------------------------------------------------- /tests/data/workflow-tests/.leapp/leapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/.leapp/leapp.conf -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/aftercommonthirdactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/aftercommonthirdactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/afterthirdactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/afterthirdactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/beforecommonthirdactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/beforecommonthirdactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/beforethirdactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/beforethirdactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/configprovider/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/configprovider/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/fifthactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/fifthactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/firstactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/firstactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/fourthactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/fourthactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/notscheduledfourthactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/notscheduledfourthactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/secondactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/secondactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/secondcommonactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/secondcommonactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/actors/thirdactor/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/actors/thirdactor/actor.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/libraries/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/libraries/test_helper.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/models/unittestconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/models/unittestconfig.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/fifthphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/fifthphase.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/firstphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/firstphase.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/fourthphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/fourthphase.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/secondphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/secondphase.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/thirdphase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/thirdphase.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/tags/unittestworkflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/tags/unittestworkflow.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/topics/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/topics/config.py -------------------------------------------------------------------------------- /tests/data/workflow-tests/workflows/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/data/workflow-tests/workflows/unit_test.py -------------------------------------------------------------------------------- /tests/scripts/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/conftest.py -------------------------------------------------------------------------------- /tests/scripts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/helpers.py -------------------------------------------------------------------------------- /tests/scripts/test_actor_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_actor_api.py -------------------------------------------------------------------------------- /tests/scripts/test_actor_config_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_actor_config_db.py -------------------------------------------------------------------------------- /tests/scripts/test_answerstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_answerstore.py -------------------------------------------------------------------------------- /tests/scripts/test_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_audit.py -------------------------------------------------------------------------------- /tests/scripts/test_deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_deprecation.py -------------------------------------------------------------------------------- /tests/scripts/test_dialog_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_dialog_db.py -------------------------------------------------------------------------------- /tests/scripts/test_exit_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_exit_status.py -------------------------------------------------------------------------------- /tests/scripts/test_messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_messaging.py -------------------------------------------------------------------------------- /tests/scripts/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_metadata.py -------------------------------------------------------------------------------- /tests/scripts/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_models.py -------------------------------------------------------------------------------- /tests/scripts/test_phaseactors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_phaseactors.py -------------------------------------------------------------------------------- /tests/scripts/test_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_reporting.py -------------------------------------------------------------------------------- /tests/scripts/test_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_repository.py -------------------------------------------------------------------------------- /tests/scripts/test_repository_actor_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_repository_actor_definition.py -------------------------------------------------------------------------------- /tests/scripts/test_rerun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_rerun.py -------------------------------------------------------------------------------- /tests/scripts/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_serialization.py -------------------------------------------------------------------------------- /tests/scripts/test_snactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_snactor.py -------------------------------------------------------------------------------- /tests/scripts/test_stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_stdlib.py -------------------------------------------------------------------------------- /tests/scripts/test_stdlib_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_stdlib_call.py -------------------------------------------------------------------------------- /tests/scripts/test_stdlib_call_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_stdlib_call_audit.py -------------------------------------------------------------------------------- /tests/scripts/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_tags.py -------------------------------------------------------------------------------- /tests/scripts/test_topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_topics.py -------------------------------------------------------------------------------- /tests/scripts/test_utils_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_utils_meta.py -------------------------------------------------------------------------------- /tests/scripts/test_utils_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_utils_output.py -------------------------------------------------------------------------------- /tests/scripts/test_utils_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_utils_project.py -------------------------------------------------------------------------------- /tests/scripts/test_utils_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_utils_report.py -------------------------------------------------------------------------------- /tests/scripts/test_workarounds_application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_workarounds_application.py -------------------------------------------------------------------------------- /tests/scripts/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_workflow.py -------------------------------------------------------------------------------- /tests/scripts/test_workflow_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/tests/scripts/test_workflow_apis.py -------------------------------------------------------------------------------- /utils/get_latest_copr_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oamg/leapp/HEAD/utils/get_latest_copr_build --------------------------------------------------------------------------------