{"id":18794183,"url":"https://github.com/yandex-cloud-examples/yc-load-testing-list-tests","last_synced_at":"2026-02-18T19:31:51.590Z","repository":{"id":270233350,"uuid":"769051177","full_name":"yandex-cloud-examples/yc-load-testing-list-tests","owner":"yandex-cloud-examples","description":"Получение списка тестов в сервисе Yandex Load Testing с помощью инструмента YC CLI.","archived":false,"fork":false,"pushed_at":"2025-12-18T12:54:32.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-12-21T18:39:28.550Z","etag":null,"topics":["bash","load-testing","yandex-cloud","yandexcloud","yc-cli"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yandex-cloud-examples.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-03-08T08:41:47.000Z","updated_at":"2025-12-18T12:54:36.000Z","dependencies_parsed_at":"2024-12-29T15:47:08.356Z","dependency_job_id":"d058a368-499f-473e-abd5-f94a6698fbe0","html_url":"https://github.com/yandex-cloud-examples/yc-load-testing-list-tests","commit_stats":null,"previous_names":["yandex-cloud-examples/yc-load-testing-list-tests"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yandex-cloud-examples/yc-load-testing-list-tests","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yandex-cloud-examples%2Fyc-load-testing-list-tests","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yandex-cloud-examples%2Fyc-load-testing-list-tests/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yandex-cloud-examples%2Fyc-load-testing-list-tests/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yandex-cloud-examples%2Fyc-load-testing-list-tests/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yandex-cloud-examples","download_url":"https://codeload.github.com/yandex-cloud-examples/yc-load-testing-list-tests/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yandex-cloud-examples%2Fyc-load-testing-list-tests/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29591917,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T18:54:29.675Z","status":"ssl_error","status_checked_at":"2026-02-18T18:50:50.517Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","load-testing","yandex-cloud","yandexcloud","yc-cli"],"created_at":"2024-11-07T21:28:32.627Z","updated_at":"2026-02-18T19:31:51.530Z","avatar_url":"https://github.com/yandex-cloud-examples.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Get a list of tests in Yandex Cloud Load Testing service using YC CLI.\n\nIn this example, it is shown how to list and filter tests created in Load Testing service using YC CLI tool.\n\nNOTE: in snippets bellow, it is assumed that folder-id setting is already set in `yc`\n\n```bash\nyc config set folder-id 'my_folder_id'\n```\n\nNOTE2: to get test ids for further processing, use json output format and `jq` command-line tool:\n\n```bash\nyc loadtesting test list --filter $FILTER_QUERY | jq -r \"[.[].id] | join(\\\" \\\")\"\n```\n\n## 1. All tests in folder\n\n```bash\nyc loadtesting test list\n```\n\n## 2. All tests with name containing 'api-examples'\n\n```bash\nyc loadtesting test list --filter \"details.name CONTAINS 'api-examples'\"\n```\n\n## 3. All tests with tags 'issue:123' and 'type:release'\n\n```bash\nyc loadtesting test list --filter \"details.tags.issue:123 and details.tags.type:release\"\n```\n\n## 4. All tests created by account with id 'loadtester'\n\n```bash\nyc loadtesting test list --filter \"summary.created_by = 'loadtester'\"\n```\n\n## 5. All tests created at 29 Jan 2024\n\n```bash\nyc loadtesting test list --filter \"summary.created_at \u003e= 2024-01-29 AND summary.created_at \u003c 2024-01-30\"\n```\n\n## 6. All tests created in 2023 which are not finished yet\n\n```bash\nyc loadtesting test list --filter \"summary.is_finished = false AND summary.created_at \u003e= 2023-01-01 AND summary.created_at \u003c 2024-01-01\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyandex-cloud-examples%2Fyc-load-testing-list-tests","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyandex-cloud-examples%2Fyc-load-testing-list-tests","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyandex-cloud-examples%2Fyc-load-testing-list-tests/lists"}