Metadata-Version: 2.1
Name: setuptools-test-command-stub
Version: 0.1.1
Summary: Patches setuptools.command.test with mock
Home-page: https://github.com/gtors/setuptools-test-command-stub
License: MIT
Author: Andrey Torsunov
Author-email: andrey.torsunov@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Project-URL: Repository, https://github.com/gtors/setuptools-test-command-stub
Description-Content-Type: text/markdown

# Stub for setuptools.command.test

This package provides a stub for the setuptools.command.test command, which can be used to work around issues with setuptools upgrades that break the test command.

### Installation

Install the package using your preferred package manager:

```
pip install setuptools-test-command-stub
```

Or poetry:

```
[tool.poetry.dependencies]
setuptools-test-command-stub = "*"
```

Add that dependency first in the list of the dependencies in you pyproject.toml. Then, run poetry lock to lock your dependencies.


## How it works? 

It's just patches `setuptools.command.test` with `unittest.mock.MagicMock`. 

Remember to remove this package and fix the underlying setuptools issue once possible.

