Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wemake-services/pytest-modified-env
Pytest plugin to fail a test if it leaves modified `os.environ` afterwards.
https://github.com/wemake-services/pytest-modified-env
codequality pytest pytest-plugin python3 test testing tests unittest
Last synced: 3 months ago
JSON representation
Pytest plugin to fail a test if it leaves modified `os.environ` afterwards.
- Host: GitHub
- URL: https://github.com/wemake-services/pytest-modified-env
- Owner: wemake-services
- License: mit
- Created: 2022-01-29T09:22:52.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T03:03:58.000Z (over 1 year ago)
- Last Synced: 2024-04-14T07:11:38.938Z (7 months ago)
- Topics: codequality, pytest, pytest-plugin, python3, test, testing, tests, unittest
- Language: Python
- Homepage: https://pypi.org/project/pytest-modified-env/
- Size: 153 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pytest - pytest-modified-env - Pytest plugin to fail a test if it leaves modified `os.environ` afterwards. (Plugins)
README
# pytest-modified-env
[![wemake.services](https://img.shields.io/badge/%20-wemake.services-green.svg?label=%20&logo=data%3Aimage%2Fpng%3Bbase64%2CiVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC%2FxhBQAAAAFzUkdCAK7OHOkAAAAbUExURQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP%2F%2F%2F5TvxDIAAAAIdFJOUwAjRA8xXANAL%2Bv0SAAAADNJREFUGNNjYCAIOJjRBdBFWMkVQeGzcHAwksJnAPPZGOGAASzPzAEHEGVsLExQwE7YswCb7AFZSF3bbAAAAABJRU5ErkJggg%3D%3D)](https://wemake.services)
[![test](https://github.com/wemake-services/pytest-modified-env/actions/workflows/test.yml/badge.svg?branch=master&event=push)](https://github.com/wemake-services/pytest-modified-env/actions/workflows/test.yml)
[![Python Version](https://img.shields.io/pypi/pyversions/pytest-modified-env.svg)](https://pypi.org/project/pytest-modified-env/)
[![wemake-python-styleguide](https://img.shields.io/badge/style-wemake-000000.svg)](https://github.com/wemake-services/wemake-python-styleguide)Pytest plugin to fail a test if it leaves modified `os.environ` afterwards.
Example:
```python
import osdef test_that_modifies_env() -> None:
os.environ['CUSTOM_ENV'] = '1'
```With `pytest-modified-env` plugin installed, this test will fail:
```
___________________________ test_that_modifies_env ____________________________
test_that_modifies_env:4: in pytest_runtest_call
E RuntimeError: os.environ was changed
```Because it adds `CUSTOM_ENV` inside a test and does not clean it up.
In theory it can affect other tests and tests should be isolated!## Installation
```bash
pip install pytest-modified-env
```## Extras
In some cases test still might modify the env in this way.
But, it needs an explicit approval for that:```python
import os
import pytest@pytest.mark.modify_env()
def test_that_modifies_env() -> None:
os.environ['CUSTOM_ENV'] = '1'
```This test won't fail, eventhough it adds `CUSTOM_ENV`,
because it has `modifies_env` marker.## License
[MIT](https://github.com/wemake-services/pytest-modified-env/blob/master/LICENSE)