-
Notifications
You must be signed in to change notification settings - Fork 98
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
python setup.py nosetests fails with gusto #10
Comments
appdirs uses an old home-grown test library -- written by @trentm i believe before the modern python testing tools came into existence -- to run its tests. if anyone wants to port the tests to nose, feel free to do it. |
I would just say ... don’t port to nose, use stdlib and unittest, it is good enough these days. |
I would recommend py.test as a test framework. |
|
@mcepl: I think you might have taken my suggestion the wrong way. I wasn't making any statement regarding the quality of your code, I was pointing out that, generally, py.test requires a lot less boilerplate code and has some other advantages that could be useful for appdirs. Regarding your concern about backward compatibility, py.test is quite well maintained and has as an explicit goal to be compatible with all versions of python that make sense without requiring the user to account for them. I, by no means, wanted to critique your work or something of that sort, but I was simply trying to give some input, in the hope it would be helpful. If the maintainers of appdirs conclude any of our ideas and code are of any value, they will probably integrate them. BTW, I made myself some changes which relate to XDG compliance and was wondering how difficult would it be to test the actual behaviour for all supported platforms on any arbitrary platform? |
The text was updated successfully, but these errors were encountered: