-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal CI and documentation fixes. #273
Minimal CI and documentation fixes. #273
Conversation
Simply running nosetests wont work because dependencies aren't installed in the virtualenv. You'd have to manually pip install each dependency like travis currently does. Nose recommends this as "the easiest way to run tests with nose". http://nose.readthedocs.org/en/latest/api/commands.html
I think the best way forward might be to just instruct people to run |
@coddingtonbear |
@ryneeverett -- my understanding is that since we've set |
Actually -- I have to admit that I hadn't read your PR very carefully before posting my first comment above. I'm +1 on making either the change you've suggested or the one I have. |
@coddingtonbear That makes sense, but when I run |
Good stuff. Thanks both! |
Minimal CI and documentation fixes.
We dropped python 2.6 from CI in GothenburgBitFactory#273 so the backport is no longer needed.
We dropped python 2.6 from CI in GothenburgBitFactory#273 so the backport is no longer needed.
Simply running
nosetests
wont work because dependencies aren't installedin the virtualenv. You'd have to manually
pip install
each dependencylike travis currently does.
Nose recommends this as "the easiest way to run tests with nose".
http://nose.readthedocs.org/en/latest/api/commands.html