Skip to content

Commit

Permalink
docs: document other env vars for make test-acc
Browse files Browse the repository at this point in the history
Fully running the acceptance tests uses more than just a project, there
are tests which interact with accounts and orgs, so we should probably
document how to get them to run here.
  • Loading branch information
sigmaris committed Nov 7, 2023
1 parent 682336c commit d39c58e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ nav_order: 1

- Migrate `aiven_service_integration` to the Plugin Framework
- Deprecating `project_user`, `account_team` and `account_team_member` resources
- Improve contributing documentation on running acceptance tests.

## [4.9.1] - 2023-10-03

Expand Down
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@ Run the tests with the command below:
make test
```

Acceptance tests interact with the real Aiven API and require an API token and existing project, account and organization on Aiven to create resources in. A non-default API URL can be used by setting the `AIVEN_WEB_URL` environment variable to e.g. `https://your.custom.api:443`.

Run the acceptance tests with the commands below:

```bash
export AIVEN_TOKEN="your-token"
export AIVEN_PROJECT_NAME="your-project-name"
export AIVEN_ACCOUNT_NAME="your-existing-account-name"
export AIVEN_ORGANIZATION_NAME="your-existing-org-name"

# run all acceptance tests
make test-acc
Expand Down

0 comments on commit d39c58e

Please sign in to comment.