Skip to content
michaxm edited this page Sep 2, 2015 · 1 revision

running the tests

cabal test

The data for some tests is not included in the main repository, these tests will fail. Either pull in the submodules (quite big):

git submodule init
git submodule update

... or pull in the neccessary data by hand (adding a leading zero to numbers starting with '.' since Text.Read.read cannot parse them):

mkdir -p datasets/csv/uci/
wget http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data -q -O - |sed 's/,\./,0\./g' > datasets/csv/uci/wine.csv
Clone this wiki locally