pytest-marks 0.3
The ability to set 'marks' on py.test test methods is pretty cool. @pytest.mark.red def some_test_method(self): # some check-y stuffBut if you have a half dozen marks that you...
The ability to set 'marks' on py.test test methods is pretty cool. @pytest.mark.red def some_test_method(self): # some check-y stuffBut if you have a half dozen marks that you...
Py.Saunter is a project currently based on Nose. It will be based on Py.Test really soon.InstallationIn order to make the most out of Selenium and Python; and to use the example code here, you need to sudo pip install nose sudo pip install...
The default py.test keyword filtering (-k) is _way_ too broad. You would think that it would be based on the MarkInfo objects that are described alongside the filter option but that would be incorrect. In fact, it chooses the method/function name of the...