Craig Anderson

Results 27 comments of Craig Anderson

Would it be possible for this library to provide something like [django_stubs_ext](https://github.com/typeddjango/django-stubs/tree/master/django_stubs_ext) to do this for us?

There are a handful listed on https://awesomejs.dev/for/cypress/, and https://github.com/mjhea0/cypress-visual-regression looks like the most likely candidate. Having said that, I've had no big issues with this library as-is.

I believe this exposes an issue where strings like "n hours ago" are being interpreted as n - 1 hours ago.

The docs for that setting are included in PR #705 which adds that setting :) Is there anything else you feel which should be added to the docs?

FWIW, My pipeline looks like this: ```python class EventDjangoPipeline(object): def process_item(self, item, spider): try: event = models.Event.objects.get(url=item["url"]) event_id = event.id event = item.save(commit=False) event.id = event_id except models.Event.DoesNotExist: pass item.save()...

Workaround is to set `created` in the pipeline: ```python class EventDjangoPipeline(object): def process_item(self, item, spider): try: event = models.Event.objects.get(url=item["url"]) item["created"] = event.created event_id = event.id event = item.save(commit=False) event.id =...

I'm currently working around this issue by including `app.debug = True` in my tests, which is less than ideal.

[It looks like XLRD has dropped support for XLSX files completely.](https://groups.google.com/g/python-excel/c/IRa8IWq_4zk/m/Af8-hrRnAgAJ?pli=1)

Apologies for taking so long to get back to this. Updating to the latest pyexcel-xls doesn't solve this problem. It's only when we're on the latest version of pyexcel-xls that...

I've been able to workaround by overriding the command and deleting `/var/run/apache2/apache2.pid` when it exists. In `docker-compose.yml`: ```yaml ui: image: konradkleine/docker-registry-frontend:v2 environment: ENV_DOCKER_REGISTRY_HOST: registry ENV_DOCKER_REGISTRY_PORT: 5000 depends_on: - registry ports:...