2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
|
|
|
|
Module = py.test.collect.Module
|
|
|
|
Directory = py.test.collect.Directory
|
2009-03-23 01:41:36 +08:00
|
|
|
File = py.test.collect.File
|
|
|
|
|
|
|
|
# python collectors
|
2008-08-16 23:26:59 +08:00
|
|
|
Class = py.test.collect.Class
|
|
|
|
Generator = py.test.collect.Generator
|
|
|
|
Function = py.test.collect.Function
|
|
|
|
Instance = py.test.collect.Instance
|
|
|
|
|
2009-06-09 00:31:10 +08:00
|
|
|
pytest_plugins = "default runner terminal xfail tmpdir execnetcleanup monkeypatch recwarn pdb".split()
|
2009-02-27 18:18:27 +08:00
|
|
|
|