nose-progressive
nose-progressive copied to clipboard
A nosetests plugin with a progress bar and an emphasis on showing what's important
#92 from python3.8 we need to remove the use_2to3.
nose-progressive is failing with python3.8
I'm currently tring to ship this as a package on Arch Linux [community]. However I'm unable to get the tests to run: ``` /usr/lib/python3.7/site-packages/nose/plugins/manager.py:395: RuntimeWarning: Unable to load plugin noseprogressive...
Could you please publish a new release that is compatible with Python 3?
Erik, Can you tag a new release now that Python 3 support has been added? The latest tagged release is 1.5.1 from 2014. I know that I can pip install...
Standard nosetests handles KeyboardInterrupt gracefully: ``` $ nosetests .........^C ---------------------------------------------------------------------- Ran 10 tests in 0.263s OK ``` With `--with-progressive`, however, a keyboard interrupt crashes out: ``` $ nosetests --with-progressive ERROR:...
I do have 200+ tests, when 20 fail going through them is pain in ... as I have to do lot's of copy and paste and upward scrolling. would it...
Currently nose-progressive only displays failing or error tests. When I write tests as a developer, I like to see that my newly written tests are there and OK. This PR...
Hi, I'm using nose-progressive in a python3 project. When trying to debug a failing test, I had an issue having `raw_input` not existing. This is happening in the [wrapping](https://github.com/erikrose/nose-progressive/blob/master/noseprogressive/wrapping.py#L32) module....
for whatever reason, nose-progressive isn't identifying my environment as one that it should automatically turn off the progress bar. i would like to be able to keep the failures /...