UNKNOWN
Project description
Pytest-Marks
============
The ability to set 'marks' on py.test test methods is pretty cool.
@pytest.mark.red
def some_test_method(self):
# some check-y stuff
But if you have a half dozen marks that you want to put on a method, it gets kinda yucky.
@pytest.mark.red
@pytest.mark.green
@pytest.mark.blue
@pytest.mark.black
@pytest.mark.orange
@pytest.mark.pink
def some_test_method(self):
# some check-y stuff
What would be nice is if you could apply them all in a single decorator.
@pytest.marks('red', 'green', 'blue', 'black', 'orange', 'pink')
def some_test_method(self):
# some check-y stuff
Well, now you can.
To install, either
* pip install pytest-marks
* python setup.py install
============
The ability to set 'marks' on py.test test methods is pretty cool.
@pytest.mark.red
def some_test_method(self):
# some check-y stuff
But if you have a half dozen marks that you want to put on a method, it gets kinda yucky.
@pytest.mark.red
@pytest.mark.green
@pytest.mark.blue
@pytest.mark.black
@pytest.mark.orange
@pytest.mark.pink
def some_test_method(self):
# some check-y stuff
What would be nice is if you could apply them all in a single decorator.
@pytest.marks('red', 'green', 'blue', 'black', 'orange', 'pink')
def some_test_method(self):
# some check-y stuff
Well, now you can.
To install, either
* pip install pytest-marks
* python setup.py install
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
pytest_marks-0.2-py2.7.egg
(3.3 kB
view details)
File details
Details for the file pytest_marks-0.2-py2.7.egg
.
File metadata
- Download URL: pytest_marks-0.2-py2.7.egg
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcd937d7227fcaf38637ffe7a174bbb821010aefb0c5eb9185f3ce74080cd4f9 |
|
MD5 | 74563c232ebdcbd101b2c67e5fd8692e |
|
BLAKE2b-256 | c131ea1d9102dc6c7d426901282fb74dfa358f063a47c332af3c285b31318dfe |