-
Notifications
You must be signed in to change notification settings - Fork 78
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
Update testing framework #136
Comments
I'm currently revamping the testing mechanism (see #140) because I think it's not maintainable in the current state. I'll switch to pytest after some more cleanup work if it's reasonably easy to do. After a quick search, I think the deprecated warning comes from the test command of setuptools being deprecated and has nothing to do with the unittest framework. How would switching to pytest help with this?
Some tests are expected to fail, for instance if they use old Fortran constructs that are not supported by fprettify. These failures are registered as |
We would not be running Using |
The existing
unittests
framework does not appear to be catching all errors. I propose we swap topytest
for mainly 2 reasons:python -m unittests
does not show the output we would want for debuggingThe text was updated successfully, but these errors were encountered: