Metadata-Version: 2.1
Name: pytest-status
Version: 0.1.0
Summary: Add status mark for tests
Home-page: https://github.com/hanzhichao/pytest-status
Author: Han Zhichao
Author-email: superhin@126.com
License: MIT license
Keywords: pytest,py.test,pytest-status,test status,pytest tester
Classifier: Framework :: Pytest
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Requires-Dist: pytest-runner

# pytest-status
![Languate - Python](https://img.shields.io/badge/language-python-blue.svg)
![PyPI - License](https://img.shields.io/pypi/l/pytest-status)
![PyPI](https://img.shields.io/pypi/v/pytest-status)
![PyPI - Downloads](https://img.shields.io/pypi/dm/pytest-status)

为用例增加用例状态s标记，运行用例时可以使用--status指定用例状态运行。

## 安装方法
```shell
pip install pytest-status
```
## 使用方式
```python
# filename: test_pytest_status.py
import pytest

@pytest.mark.status('ready')
def test_a():
    pass
    
@pytest.mark.status('implement')
def test_b():
    pass
```
使用以下命令指定归属人运行，支持指定多个归属人
```shell
pytest test_pytest_status.py --status=ready 
```

