Metadata-Version: 2.4
Name: posit-vip
Version: 0.12.1
Summary: Verified Installation of Posit - An extensible test suite for validating Posit Team deployments
License: MIT License
        
        Copyright (c) 2026 posit-dev
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: brand-yml
Requires-Dist: htmltools
Requires-Dist: httpx<1,>=0.27
Requires-Dist: playwright>=1.40
Requires-Dist: pytest-bdd>=7.0
Requires-Dist: pytest-playwright>=0.5
Requires-Dist: pytest-xdist>=3.0
Requires-Dist: pytest>=8.0
Requires-Dist: shiny[theme]>=1.0
Requires-Dist: tomli>=2.0; python_version < '3.11'
Provides-Extra: cluster
Requires-Dist: azure-identity>=1.12; extra == 'cluster'
Requires-Dist: azure-mgmt-containerservice>=20.0; extra == 'cluster'
Requires-Dist: boto3>=1.26; extra == 'cluster'
Requires-Dist: pyjwt>=2.12.0; extra == 'cluster'
Requires-Dist: pyyaml>=6.0; extra == 'cluster'
Provides-Extra: dev
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pip-audit>=2.7; extra == 'dev'
Requires-Dist: pytest-cov>=6.0; extra == 'dev'
Requires-Dist: ruff<0.16,>=0.15.0; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0; extra == 'dev'
Provides-Extra: report
Requires-Dist: ipykernel; extra == 'report'
Requires-Dist: jinja2>=3.1; extra == 'report'
Requires-Dist: jupyter; extra == 'report'
Requires-Dist: nbclient>=0.8; extra == 'report'
Requires-Dist: nbformat>=5.7; extra == 'report'
Requires-Dist: tornado>=6.5.5; extra == 'report'
Description-Content-Type: text/markdown

# VIP - Verified Installation of Posit

An open-source, extensible test suite that validates Posit Team deployments are
installed correctly and functioning properly.

VIP uses **BDD-style tests** (pytest-bdd + Playwright) to verify Connect,
Workbench, and Package Manager.  Results are compiled into a **Quarto report**
that can be published to a Connect server.

## Quick start

```bash
git clone https://github.com/posit-dev/vip.git
cd vip
uv sync && uv run playwright install chromium

cp vip.toml.example vip.toml     # edit with your deployment details
uv run pytest                     # run all tests
uv run pytest -m connect          # run tests for a single product
```

## Shiny app (graphical test runner)

VIP includes a Shiny for Python app that lets you select test categories,
run tests, and view the report — all from a browser.  This is especially
convenient inside a Posit Workbench session (RStudio or Positron) where
the app opens in the Viewer pane.

```bash
uv sync
uv run vip app
```

See the [Shiny App guide](docs/shiny-app.md) for details.

## Documentation

| Guide | Description |
|---|---|
| [Getting Started](docs/getting-started.md) | Prerequisites, installation, and first run |
| [Configuration](docs/configuration.md) | `vip.toml` settings and environment variables |
| [Authentication](docs/authentication.md) | Password, LDAP, OIDC, and interactive auth flows |
| [Deployment Verification](docs/deployment-verification.md) | `vip verify`, cluster setup, and K8s integration |
| [Test Categories](docs/test-categories.md) | Test markers, version gating, and extensibility |
| [Reporting](docs/reporting.md) | Generating and publishing the Quarto report |
| [Shiny App](docs/shiny-app.md) | Graphical test runner for RStudio and Positron |
| [Development](docs/development.md) | Dev setup, linting, formatting, and design principles |

## License

MIT — see [LICENSE](LICENSE).
