Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/contributing/testing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Testing Guide

This document explains how to install dependencies and run tests for awx-plugins.

## Prerequisites

- Python 3
- [tox](https://tox.wiki/)

## Quick Start

tox handles dependency installation and test execution automatically:

```bash
# Run the test suite
tox r -e py -qq

# Run tests for a specific Python version
tox r -e py311
tox r -e py312
tox r -e py313
```
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Code Of Conduct <contributing/code_of_conduct>
contributing/guidelines
contributing/communication
contributing/security
contributing/testing
Private unsupported (dev) API autodoc <pkg/awx_plugins.credentials>
```

Expand Down
Loading