If I wanted to try and add https://github.com/adamgoucher/pytest-marks 
to the main pytest distribution. Is there a process for consideration, 
code style rules, etc.?

The idea of this plugin is to allow script creators to not have to do

     @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

but rather

     @pytest.marks('red', 'green', 'blue', 'black', 'orange', 'pink')
     def some_test_method(self):
         # some check-y stuff

-adam
_______________________________________________
py-dev mailing list
py-dev@codespeak.net
http://codespeak.net/mailman/listinfo/py-dev

Reply via email to