pixelogik / NearPy

Python framework for fast (approximated) nearest neighbour search in large, high-dimensional data sets using different locality-sensitive hashes.
MIT License
759 stars 152 forks source link

Testing against multiple python versions #40

Closed mikluko closed 8 years ago

mikluko commented 8 years ago

TravisCI build results: https://travis-ci.org/akabos/NearPy

Run tests locally:

$ python setup.py test

or

$ pip install pytest
$ py.test 

or

$ pip install pytest
$ python run_tests.py

Run for multiple python versions:

$ pip install tox
$ tox -e py27,py34
pixelogik commented 8 years ago

Nice! Awesome stuff!