Dinko Pehar
Dinko Pehar
So, based on OP question, only way to upload coverage in XML is to convert it to lcov format I guess ?
I'm looking into Crystal lang. Using some coverage tools compatible with Crystal, it's able to generate cobertura.xml report. Maybe I can create tool to convert from cobertura to lcov and...
That's great. I'll have a look at that and how it can be extended I hope.
Just ran on this problem while using `fish` shell: ```sh poetry completions fish | fish ``` Output: ```sh complete: too many arguments Standard input (line 25): complete -c poetry -f...
@m-o-e I agree it's a simple file to write (`shard.yml`). Maybe in future, if this file contained more information (_all package manager files at one point contain lot of info_),...
In Django Channels, there is Consumer. It looks in basic form like this: ```python class Consumer(WebsocketConsumer): def connect(self): self.accept() # Accept connection (for example only ocpp1.6) def receive(self, text_data): payload...
I managed to create basic "Consumer" for OCPP. If anyone searches for Django Channels integration, I have used something like (_only "ocpp1.6" is accepted_): ```python from dataclasses import asdict from...
> Just picking up where you left off. Have you managed making calls to the charge point ? @Gabriel-Petrescu Yes, I've managed to integrate with this library Django-Channels. What this...
What happend to this ? I have it like this: ``` call_result.AuthorizePayload( id_tag_info={} ) ``` but instead should be something like: ``` call_result.AuthorizePayload( id_tag_info=IdTagInfo(...) ) ``` Should the type be...
I was also looking for this. I'm looking to integrate this into FastAPI since it's built on top of Starlette. Great work !