> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Dont-Import-Test-Modules

#### Sourcery rule id: `dont-import-test-modules`

#### Description

Don't import test modules.



#### Match

```python
```



#### Explanation

Don't import test modules.

Tests should be self-contained and don't depend on each other.

If a helper function is used by multiple tests,
define it in a helper module,
instead of importing one test from the other.
