ec2b666284
Continuous Integration / Pre-commit Linter (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.10) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.11) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.12) (push) Waiting to run
Continuous Integration / Mypy Check (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.10) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.11) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.12) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.13) (push) Waiting to run
Continuous Integration / Unit Tests (Python 3.14) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.10) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.11) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.12) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.13) (push) Waiting to run
Continuous Integration / A2A v0.3 Tests (Python 3.14) (push) Waiting to run
Copybara PR Handler / close-imported-pr (push) Waiting to run
24 lines
522 B
Markdown
24 lines
522 B
Markdown
# Integration tests for GCP Agent Identity Credentials service
|
|
|
|
Verifies OAuth flows using GCP Agent Identity Credentials service.
|
|
|
|
## Setup
|
|
|
|
To set up your environment for the first time, create a virtual environment
|
|
and install dependencies:
|
|
```bash
|
|
uv venv --python "python3.11" ".venv"
|
|
source .venv/bin/activate
|
|
uv sync --all-extras
|
|
```
|
|
|
|
Then, install test specific packages
|
|
```bash
|
|
pip install google-cloud-iamconnectorcredentials
|
|
```
|
|
|
|
## Run Tests
|
|
```bash
|
|
pytest -s tests/integration/integrations/agent_identity
|
|
```
|