{"id":47246595,"url":"https://github.com/posit-dev/vip","last_synced_at":"2026-04-21T01:06:08.692Z","repository":{"id":336784899,"uuid":"1149052568","full_name":"posit-dev/vip","owner":"posit-dev","description":"extensible test suite for verifying installations of posit team","archived":false,"fork":false,"pushed_at":"2026-04-17T15:02:53.000Z","size":27017,"stargazers_count":2,"open_issues_count":21,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-04-17T15:44:15.612Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://posit-dev.github.io/vip/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/posit-dev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-03T17:06:20.000Z","updated_at":"2026-04-17T13:15:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/posit-dev/vip","commit_stats":null,"previous_names":["posit-dev/vip"],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/posit-dev/vip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posit-dev%2Fvip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posit-dev%2Fvip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posit-dev%2Fvip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posit-dev%2Fvip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/posit-dev","download_url":"https://codeload.github.com/posit-dev/vip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/posit-dev%2Fvip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31954736,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2026-03-14T07:10:31.570Z","updated_at":"2026-04-18T03:01:43.447Z","avatar_url":"https://github.com/posit-dev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![PyPI](https://img.shields.io/pypi/v/posit-vip)](https://pypi.org/project/posit-vip/)\n[![CI](https://github.com/posit-dev/vip/actions/workflows/ci.yml/badge.svg)](https://github.com/posit-dev/vip/actions/workflows/ci.yml)\n[![Python](https://img.shields.io/pypi/pyversions/posit-vip)](https://pypi.org/project/posit-vip/)\n\n# VIP - Verified Installation of Posit\n\nAn open-source, extensible test suite that validates Posit Team deployments are\ninstalled correctly and functioning properly.\n\nVIP uses **BDD-style tests** (pytest-bdd + Playwright) to verify Connect,\nWorkbench, and Package Manager.  Results are compiled into an **HTML report**\nthat can be published to a Connect server.\n\n**Documentation:** https://posit-dev.github.io/vip/\n\n## Quick start\n\n```bash\nuv pip install posit-vip\nuv run playwright install chromium\nvip verify --connect-url https://connect.example.com --interactive-auth\n```\n\nOn a headless server (no display), use `--headless-auth` instead:\n\n```bash\nvip verify --config vip.toml --headless-auth\n```\n\nRun a specific test by name:\n\n```bash\nvip verify --connect-url https://connect.example.com --filter test_login\n```\n\nWith a configuration file:\n\n```bash\ncp vip.toml.example vip.toml     # edit with your deployment details\nvip verify --config vip.toml\n```\n\n## CLI commands\n\n| Command | Description |\n|---|---|\n| `vip verify` | Run verification tests against a Posit Team deployment |\n| `vip status` | Quick health check for each configured product |\n| `vip cleanup` | Delete VIP test credentials and resources |\n| `vip report` | Render the HTML report from test results (requires [Quarto CLI](https://quarto.org/docs/download/)) |\n| `vip app` | Launch the Shiny GUI for interactive test running |\n| `vip auth` | Authentication tools (e.g. mint Connect API keys) |\n| `vip cluster` | Cluster connection tools for Kubernetes deployments |\n\nRun `vip --help` or `vip \u003ccommand\u003e --help` for full usage details.\n\n## Shiny app (graphical test runner)\n\nVIP includes a Shiny for Python app that lets you select test categories,\nrun tests, and view the report — all from a browser.  This is especially\nconvenient inside a Posit Workbench session (RStudio or Positron) where\nthe app opens in the Viewer pane.\n\n```bash\nuv run vip app\n```\n\nSee the [Shiny App guide](https://posit-dev.github.io/vip/shiny-app/) for details.\n\n## Development\n\nSee [docs/development.md](docs/development.md) for dev setup, linting, and formatting.\n\nFor the test architecture and four-layer design, see [docs/test-architecture.md](docs/test-architecture.md).\n\n## License\n\nMIT — see [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposit-dev%2Fvip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fposit-dev%2Fvip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fposit-dev%2Fvip/lists"}