pysal / spglm

SParse Generalized Linear Models (spglm)
https://pysal.org/spglm/
BSD 3-Clause "New" or "Revised" License
32 stars 20 forks source link

include tests in release #9

Closed ljwolf closed 6 years ago

ljwolf commented 6 years ago

please include the tests in the MANIFEST.in, since we're consuming them downstream for pysal/pysal now.

TaylorOshan commented 6 years ago

@ljwolf Based on the previous sub-module template I had been using, there was no MANIFEST.in file. Is there a sub-module you suggest for reference for a proper manifest file that includes tests?

ljwolf commented 6 years ago

Actually, I think it's sufficient to add an __init__.py to your test directory. That'll make Python understand the tests folder as a module.

TaylorOshan commented 6 years ago

Ok, seems even simpler, will do.

TaylorOshan commented 6 years ago

Wait, actually, I already had an __init__.py. Good to go then?

ljwolf commented 6 years ago

hmm, if the tests are in your tar.gz when you run python setup.py sdist, then yes.

TaylorOshan commented 6 years ago

This should now be remedied since the module was refactored.