pytest-marks

Software Screenshot:
pytest-marks
Software Details:
Version: 0.3
Upload Date: 15 Apr 15
Developer: Adam Goucher
Distribution Type: Freeware
Downloads: 4

Rating: 4.0/5 (Total Votes: 1)

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, with the pytest-marks module.

Requirements:

  • Python

Similar Software

Other Software of Developer Adam Goucher

py.saunter
py.saunter

20 Feb 15

Comments to pytest-marks

Comments not found
Add Comment
Turn on images!