File: conftest.py

package info (click to toggle)
lazr.config 3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 360 kB
  • sloc: python: 930; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
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 "lazr" package directory to sys.path, but we want to
# ensure that subpackages of lazr can be imported both from our
# build-dependencies and from this package while running tests.

import os.path

import lazr

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