# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools EGIT_REPO_URI="https://github.com/bridgecrewio/${PN}.git" PYTHON_COMPAT=( python3_{10,11} ) inherit distutils-r1 git-r3 DESCRIPTION="Static code analysis tool for infrastructure-as-code" HOMEPAGE="https://github.com/bridgecrewio/checkov" SRC_URI="" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="" RESTRICT="test" PROPERTIES="test_network" RDEPEND="dev-python/aiodns[${PYTHON_USEDEP}] dev-python/aiohttp[${PYTHON_USEDEP}] dev-python/aiomultiprocess[${PYTHON_USEDEP}] dev-python/argcomplete[${PYTHON_USEDEP}] dev-python/bc-detect-secrets[${PYTHON_USEDEP}] dev-python/bc-jsonpath-ng[${PYTHON_USEDEP}] dev-python/bc-python-hcl2[${PYTHON_USEDEP}] dev-python/boto3[${PYTHON_USEDEP}] dev-python/cachetools[${PYTHON_USEDEP}] dev-python/charset-normalizer[${PYTHON_USEDEP}] dev-python/click[${PYTHON_USEDEP}] dev-python/colorama[${PYTHON_USEDEP}] dev-python/ConfigArgParse[${PYTHON_USEDEP}] dev-python/cyclonedx-python-lib[${PYTHON_USEDEP}] dev-python/docker[${PYTHON_USEDEP}] dev-python/dockerfile-parse[${PYTHON_USEDEP}] dev-python/dpath[${PYTHON_USEDEP}] dev-python/GitPython[${PYTHON_USEDEP}] dev-python/igraph[${PYTHON_USEDEP}] dev-python/importlib-metadata[${PYTHON_USEDEP}] dev-python/jmespath[${PYTHON_USEDEP}] dev-python/jsonschema[${PYTHON_USEDEP}] dev-python/junit-xml[${PYTHON_USEDEP}] dev-python/license-expression[${PYTHON_USEDEP}] dev-python/networkx[${PYTHON_USEDEP}] dev-python/openai[${PYTHON_USEDEP}] dev-python/packageurl[${PYTHON_USEDEP}] dev-python/packaging[${PYTHON_USEDEP}] dev-python/prettytable[${PYTHON_USEDEP}] dev-python/pycep[${PYTHON_USEDEP}] dev-python/pydantic[${PYTHON_USEDEP}] dev-python/pyyaml[${PYTHON_USEDEP}] dev-python/rustworkx[${PYTHON_USEDEP}] dev-python/semantic-version[${PYTHON_USEDEP}] >=dev-python/spdx-tools-0.8[${PYTHON_USEDEP}] dev-python/tabulate[${PYTHON_USEDEP}] dev-python/termcolor[${PYTHON_USEDEP}] dev-python/tqdm[${PYTHON_USEDEP}] dev-python/typing-extensions[${PYTHON_USEDEP}] dev-python/update-checker[${PYTHON_USEDEP}] dev-python/yarl[${PYTHON_USEDEP}] dev-util/cloudsplaining[${PYTHON_USEDEP}]" DEPEND="${RDEPEND}" BDEPEND="test? ( dev-python/aioresponses[${PYTHON_USEDEP}] dev-python/flake8[${PYTHON_USEDEP}] dev-python/jsonschema[${PYTHON_USEDEP}] dev-python/pytest-mock[${PYTHON_USEDEP}] dev-python/responses[${PYTHON_USEDEP}] dev-python/time-machine[${PYTHON_USEDEP}] )" distutils_enable_tests pytest EPYTEST_DESELECT=( # assertion error tests/bicep/test_graph_manager.py::test_build_graph_from_source_directory tests/bicep/test_graph_manager.py::test_build_graph_from_definitions tests/bicep/graph/graph_builder/test_local_graph.py::test_build_graph tests/bicep/graph/graph_builder/test_renderer.py::test_render_parameter tests/bicep/graph/graph_builder/test_renderer.py::test_render_variable tests/bicep/graph/graph_builder/test_renderer.py::test_render_mixed tests/kustomize/graph/test_running_graph_checks.py::test_runner tests/sca_package_2/test_output_reports.py::test_get_cyclonedx_report tests/sca_package_2/test_output_reports.py::test_get_csv_report tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_multiline_regex_detector tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_multiline_regex_detector_only_scan_file tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_multiline_regex_detector_only_supported_files tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_regex_detector tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_regex_detector_in_custom_limit_characters tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_regex_detector_out_custom_limit_characters tests/secrets/test_load_detectors.py::TestLoadDetectors::test_custom_regex_detector_value_str tests/secrets/test_load_detectors.py::TestLoadDetectors::test_non_entropy_take_precedence_over_entropy tests/secrets/test_plugin_multiline_yml.py::TestCombinatorPluginMultilineYml::test_non_multiline_pair_time_limit_creating_report dogfood_tests/test_checkov_dogfood.py::test_helm_framework ) python_prepare_all() { # Disable integration test rm -rf {cdk_,sast_,}integration_tests || die "rm failed for integration_tests" rm -rf performance_tests || die "rm failed for performance_tests" rm -rf flake8_plugins || die "rm failed for flake8_plugins" distutils-r1_python_prepare_all }