remove the namespace hook from mark after the param feature merge

This commit is contained in:
Ronny Pfannschmidt
2017-03-20 17:58:34 +01:00
parent 6165939b0d
commit ebeba79be3
2 changed files with 4 additions and 5 deletions

View File

@@ -66,10 +66,8 @@ class MarkerError(Exception):
"""Error in use of a pytest marker/attribute."""
def pytest_namespace():
return {
'param': ParameterSet.param,
}
def param(*values, **kw):
return ParameterSet.param(*values, **kw)
def pytest_addoption(parser):