Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

edgify / pytools   python

Repository URL to install this package:

Version: 2020.3.1 

/ test.py

from __future__ import absolute_import
try:
    from py.test import mark as mark_test  # pylint:disable=unused-import
except ImportError:
    class _Mark:
        def __getattr__(self, name):
            def dec(f):
                return f
            return dec
    mark_test = _Mark()