Mercurial > hg > tvii
view tests/common.py @ 84:0f3af15bb29a
add noise introduction function
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 17 Dec 2017 13:55:35 -0800 |
parents | 4f197c057e26 |
children |
line wrap: on
line source
""" testing common """ import os from tvii import read here = os.path.dirname(os.path.abspath(__file__)) data = os.path.join(here, 'data') def datafile(*path): """returns path within `tests/data`""" return os.path.join(data, *path) def load(*path, **kwargs): """load a data file""" return read.read(datafile(*path), **kwargs)