Skip to content
Snippets Groups Projects
Commit 27eb6c4c authored by Fabian Pedregosa's avatar Fabian Pedregosa
Browse files

FIX: add test fixtures to distribution.

Fixes some failures in skl.test()
parent fcfa048e
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
import numpy
import os
def configuration(parent_package='', top_path=None):
from numpy.distutils.misc_util import Configuration
......@@ -8,6 +9,7 @@ def configuration(parent_package='', top_path=None):
config.add_data_dir('data')
config.add_data_dir('descr')
config.add_data_dir('images')
config.add_data_dir(os.path.join('tests', 'data'))
return config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment