Pamela McA'Nulty

Results 13 comments of Pamela McA'Nulty

ping: Is this project Dead? There's been no release since 2019 (~2.8 years), and it's throwing `RemovedInDjango40Warning` because it's using `django.conf.urls.url()` in its `urls.py`

If you are using LiveServerTestCases - or any non-single-process test - you have to follow the coverage docs for parallel/multiprocessing and use `coverage combine`

Thanks for your issue report. There have been a number of similar reports. Late last night I found a fix for at least one of the potential initialization issues. I...

Could you try with PR https://github.com/nedbat/django_coverage_plugin/pull/38? Thanks. Background: Since version 1.8, Django has been deferring initialization steps later and later in the process. Since these changes are all internal to...

@jclgoodwin Thanks for trying. I'll dig in some more and get back to you with another attempt. `django gets more efficient at startup ... and more confusing :)`

@jclgoodwin Do you have a working example I could test against? Or at least your settings.TEMPLATES configuration? I've added a template tag to my "insane_integration" test branch, but it works...

I haven't tried to use coverage.py's ability to exclude code. If you want to experiment you could try adding `{# pragma: no check #}` comment on the `{% else %}`...

One potential option is to add _another_ command line option to the effect of "--use-shell", and let command_runner.py change the args it passes to Popen: ``` if use_shell: cmd =...

Sorry, but that doesn't quite work. The diff-quality report doesn't seem to be matching lines properly. Using your example, nothing matches: ``` (agc)pam@bento-local:/projects/agc$ pep8 --exclude='*/migrations*,*/vendor*' . > /tmp/pep8-report.txt (agc)pam@bento-local:/projects/agc$ diff-quality...

The errors did not exist on master, they were in code that I'd just written (and yes, it's a close-source project: Addgene's django web site) Also, notice that if I...