File: __init__.py

package info (click to toggle)
dcmstack 0.9-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,920 kB
  • sloc: python: 5,234; makefile: 112; sh: 60
file content (11 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
"""
Module providing tests for dcmstack
"""
import sys
from os import path

test_dir = path.dirname(__file__)
src_dir = path.normpath(path.join(test_dir, path.pardir, 'src'))

if sys.path[0] != src_dir:
    sys.path.insert(0, src_dir)