Files
pytest2/contrib/pygreen/conftest.py
hpk 4c38ff30ee [svn r57756] * create new contrib directory
* move py/green to contrib/pygreen,
  fix tests and code to pass

--HG--
branch : trunk
2008-09-02 14:42:35 +02:00

9 lines
240 B
Python

import py, os
class Directory(py.test.collect.Directory):
def collect(self):
if os.name == 'nt':
py.test.skip("Cannot test green layer on windows")
else:
return super(Directory, self).collect()