Description
I see things in the tests like:
ROOT = os.path.abspath(os.path.dirname(__file__))
t_comp = read(os.path.join(ROOT, filename))
Is there a reason why this is not used instead?
t_comp = read(get_pkg_data_filename(filename))
There is also a variation using DATA global variable.
One of the subpackage where I saw this was io.ascii, so cc @taldcroft and @hamogu