├── .github └── workflows │ ├── barbosa23.yml │ ├── barbosa23flaky.yml │ ├── end2end.yml │ ├── end2endCustomContainers.yml │ └── smoketest.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── Tutorial.md ├── configs ├── QL_output_config.json ├── README.md ├── build_only_config.json ├── custom_install_only.json ├── default_filter_config.json ├── verbose.json └── verbose_only.json ├── get_rel_project_reqs.js ├── input_list_scripts ├── README.md ├── get_dep_repos.sh ├── get_package_deps.js ├── get_package_repo_link.py └── package.json ├── output_proc_scripts ├── README.md ├── count_tests_run.py └── get_json_results.py ├── qlpack.yml ├── runDocker.sh ├── runParallelGitRepos.sh ├── runParallelGitReposDocker.sh ├── run_verbose_for_repo_and_config.sh ├── src ├── TestInfo.py ├── diagnose_github_repo.py ├── diagnose_npm_package.py ├── get_repo_links.py ├── middlewares.py ├── output_parsing │ └── test_output_proc.py ├── runQuery.sh └── test_JS_repo_lib.py └── tests ├── Dockerfile ├── README.md ├── build.sh ├── memfs__results_expected.json ├── prepTestDocker.sh ├── runTestDocker.sh └── runTests.sh /.github/workflows/barbosa23.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.github/workflows/barbosa23.yml -------------------------------------------------------------------------------- /.github/workflows/barbosa23flaky.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.github/workflows/barbosa23flaky.yml -------------------------------------------------------------------------------- /.github/workflows/end2end.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.github/workflows/end2end.yml -------------------------------------------------------------------------------- /.github/workflows/end2endCustomContainers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.github/workflows/end2endCustomContainers.yml -------------------------------------------------------------------------------- /.github/workflows/smoketest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.github/workflows/smoketest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/Tutorial.md -------------------------------------------------------------------------------- /configs/QL_output_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/QL_output_config.json -------------------------------------------------------------------------------- /configs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/README.md -------------------------------------------------------------------------------- /configs/build_only_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/build_only_config.json -------------------------------------------------------------------------------- /configs/custom_install_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/custom_install_only.json -------------------------------------------------------------------------------- /configs/default_filter_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/default_filter_config.json -------------------------------------------------------------------------------- /configs/verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/verbose.json -------------------------------------------------------------------------------- /configs/verbose_only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/configs/verbose_only.json -------------------------------------------------------------------------------- /get_rel_project_reqs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/get_rel_project_reqs.js -------------------------------------------------------------------------------- /input_list_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/input_list_scripts/README.md -------------------------------------------------------------------------------- /input_list_scripts/get_dep_repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/input_list_scripts/get_dep_repos.sh -------------------------------------------------------------------------------- /input_list_scripts/get_package_deps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/input_list_scripts/get_package_deps.js -------------------------------------------------------------------------------- /input_list_scripts/get_package_repo_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/input_list_scripts/get_package_repo_link.py -------------------------------------------------------------------------------- /input_list_scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/input_list_scripts/package.json -------------------------------------------------------------------------------- /output_proc_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/output_proc_scripts/README.md -------------------------------------------------------------------------------- /output_proc_scripts/count_tests_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/output_proc_scripts/count_tests_run.py -------------------------------------------------------------------------------- /output_proc_scripts/get_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/output_proc_scripts/get_json_results.py -------------------------------------------------------------------------------- /qlpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/qlpack.yml -------------------------------------------------------------------------------- /runDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/runDocker.sh -------------------------------------------------------------------------------- /runParallelGitRepos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/runParallelGitRepos.sh -------------------------------------------------------------------------------- /runParallelGitReposDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/runParallelGitReposDocker.sh -------------------------------------------------------------------------------- /run_verbose_for_repo_and_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/run_verbose_for_repo_and_config.sh -------------------------------------------------------------------------------- /src/TestInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/TestInfo.py -------------------------------------------------------------------------------- /src/diagnose_github_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/diagnose_github_repo.py -------------------------------------------------------------------------------- /src/diagnose_npm_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/diagnose_npm_package.py -------------------------------------------------------------------------------- /src/get_repo_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/get_repo_links.py -------------------------------------------------------------------------------- /src/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/middlewares.py -------------------------------------------------------------------------------- /src/output_parsing/test_output_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/output_parsing/test_output_proc.py -------------------------------------------------------------------------------- /src/runQuery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/runQuery.sh -------------------------------------------------------------------------------- /src/test_JS_repo_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/src/test_JS_repo_lib.py -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/memfs__results_expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/memfs__results_expected.json -------------------------------------------------------------------------------- /tests/prepTestDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/prepTestDocker.sh -------------------------------------------------------------------------------- /tests/runTestDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/runTestDocker.sh -------------------------------------------------------------------------------- /tests/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emarteca/npm-filter/HEAD/tests/runTests.sh --------------------------------------------------------------------------------