Arne Fahrenwalde

Results 10 comments of Arne Fahrenwalde

Coverage doesn't seem to work reliably with Green and Django right now at all. If I use the `DjangoRunner` with coverage enabled in the `.green` configuration and run my tests...

@CleanCut: Thank you for your reply. I'm sorry I should have described my problem in a more verbose / bug report manner. I did disable coverage in the green configuration...

Just to double check it isn't just me. * I cloned the [wagtail repository](https://github.com/wagtail/wagtail) (I don't use it in my project and use a more basic django layout because I...

Here's my modifed `run_tests`: ```python def run_tests(self, test_labels, extra_tests=None, **kwargs): """ Run the unit tests for all the test labels in the provided list. Test labels should be dotted Python...

Sorry for spamming so much, but just in case it helps you track down any errors: ```python class DjangoRunner(DiscoverRunner): [..] def run_suite(self, suite, **kwargs): # Green args = mergeConfig(Namespace()) if...

One last spam message: ```python class DjangoRunner(DiscoverRunner): def __init__(self, verbose=-1, **kwargs): [..] self.test_labels = None [..] def build_suite(self, test_labels=None, extra_tests=None, **kwargs): self.test_labels = test_labels return super(DjangoRunner, self).build_suite(test_labels=test_labels, extra_tests=extra_tests, **kwargs) def...

Looking at your code and the [coverage documentation](https://coverage.readthedocs.io/en/stable/config.html#run) I found the solution: ```console dev@vm:~$ cat .coveragerc [run] concurrency = multiprocessing [..] --or-- dev@vm:~$ cat pyproject.toml [tool.coverage.run] concurrency = ["multiprocessing"] [..]...

Just to add a small visual change for zsh / oh-my-zsh instead of the text output: at the end of ~/.zshrc `export DIRENV_LOG_FORMAT=` `eval "$(direnv hook zsh)"` then I created...

Dowgrading to pip 19.x solved this issue for me: `pip install pip~=19.0` It fails with 20.2.4.

As a workaround you can edit the following file (the location is valid for a global install in Manjaro): ```console user@pc:~$ sudo vim /usr/share/gnome-shell/extensions/[email protected]/stylesheet.css ``` (Only showing the relevant lines)...