~ibmcharmers/charms/xenial/ibm-cinder-storwize-svc/devel

« back to all changes in this revision

Viewing changes to .tox/py35/lib/python3.5/site-packages/_pytest/_pluggy.py

  • Committer: Ankammarao
  • Date: 2017-03-06 05:11:42 UTC
  • Revision ID: achittet@in.ibm.com-20170306051142-dpg27z4es1k56hfn
Marked tests folder executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""
 
2
imports symbols from vendored "pluggy" if available, otherwise
 
3
falls back to importing "pluggy" from the default namespace.
 
4
"""
 
5
 
 
6
try:
 
7
    from _pytest.vendored_packages.pluggy import *  # noqa
 
8
    from _pytest.vendored_packages.pluggy import __version__  # noqa
 
9
except ImportError:
 
10
    from pluggy import *  # noqa
 
11
    from pluggy import __version__  # noqa