Metadata-Version: 2.1
Name: pytest-nose-attrib
Version: 0.1.0
Summary: pytest plugin to use nose @attrib marks decorators and pick tests based on attributes and partially uses nose-attrib plugin approach
Author-email: Maksim Gelbakhiani <Max.Gelbakhiani@gmail.com>
License: The MIT License (MIT)
        
        Copyright (c) 2016 AbdealiJK
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/MaxGelbakhiani/pytest-nose-attrib
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# pytest-nose-attrib

The `pytest-nose-attrib`_ plugin serves two purposes. It adds lets to use
nose attribites marks with @attrib decorator. And to pick the tests with
that attribues. It could be usefull when running nose tests with pytest.

## Installation

Install the plugin with:

    pip install pytest-nose-attrib

## Usage examples

To use the plugin, the `-a` CLI argument has been
provided.

Using pytest-nose-attrib, only tests marked with method='get' can be run using:

    $ py.test -a "method=get"

## LICENSE

![MIT License](https://img.shields.io/github/license/AbdealiJK/pytest-attrib.svg)

This code falls under the
[MIT License](https://tldrlegal.com/license/mit-license).
Please note that some files or content may be copied from other places
and have their own licenses. Dependencies that are being used to generate
the databases also have their own licenses.
