- rename pytest_xfail to pytest_skip - dynamic "skipif" and "xfail" decorators - move most skipping code to the plugin also coming with this commit: - extend mark keyword to accept positional args + docs - fix a few documentation related issues - leave version as "trunk" for now --HG-- branch : trunk
15 lines
424 B
Python
15 lines
424 B
Python
import py
|
|
|
|
Module = py.test.collect.Module
|
|
Directory = py.test.collect.Directory
|
|
File = py.test.collect.File
|
|
|
|
# python collectors
|
|
Class = py.test.collect.Class
|
|
Generator = py.test.collect.Generator
|
|
Function = py.test.collect.Function
|
|
Instance = py.test.collect.Instance
|
|
|
|
pytest_plugins = "default runner capture terminal keyword skipping tmpdir monkeypatch recwarn pdb pastebin unittest helpconfig nose assertion".split()
|
|
|