green
green copied to clipboard
Green is a clean, colorful, fast python test runner.
My current environment: `Green 3.4.0, Coverage 6.2, Python 3.9.4` on Windows10 I run a test by naming it explicit: ``` C:\Users\buhtzch\tab-cloud\_transfer\greenbug>py -3 -m green tests.test_my Ran 0 tests in 0.316s...
I had a file with: ``` import functools from typings import List ... ``` Note that `typings` is an invalid import. It should be `typing` Trying to run green I...
When using coverage with green in django, all import statements, class heads and function heads (presumably etc.) are marked as not covered. I have no idea about the inner workings...
We thrive to make our unittests very fast through proper targeting and mocking. Unfortunately once in a while a new "unittest" will take over 1m. We would like to capture...
@CleanCut I work closely with @sodul, is it possible to be added as a maintainer to assist in the release process? I understand that the release process is currently bottlenecked...
Improve setup.cfg to perform local dev installs more simply and add a make target that uses vanilla python containers for supported versions for local development. The new `make test-on-containers` runs...
We have a unittest that is decorated with `@unittest.skipIf(...)`, and when green is collecting tests results in `stopTest()` we get an `AttributeError` for `start_time` on this line: `self.test_time = str(time.time()...
It is time to move the release process from my local machine to GitHub actions. - Trigger the action manually (via [workflow_dispatch](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch)) - Do the equivalent of what `make run`...
While developing tests it is quite handy to put in breakpoints or extra prints. At the moment, when a test is run by green, breakpoints do not work because stdin...
As far as I can tell, currently green only uploads sdist to pypi: https://pypi.org/simple/green/ This makes the installation slower, as everyone has to build their own wheels on demand. It...