File: conftest.py

package info (click to toggle)
zope.interface 7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,516 kB
  • sloc: python: 14,848; ansic: 1,878; makefile: 144
file content (11 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
# Work around difficulties with pre-PEP-420 namespace packages: the .pth
# files from build-dependencies are loaded during site initialization,
# adding the system "zope" package directory to sys.path, but we want to
# ensure that subpackages of zope can be imported both from our
# build-dependencies and from this package while running tests.

import os.path

import zope

zope.__path__[:0] = [os.path.join(os.path.dirname(__file__), "zope")]