Deepanshu Sahu

Results 25 comments of Deepanshu Sahu

I have updated the selenium test in utils to inherit from `ChannelsLiveServerTestCase` instead of `StaticLiveServerTestCase` and found it is failing on Django 5.2 and passing on others. This open issue...

> Can you please explain why? When running tests using `StaticLiveServerTestCase` in parallel, Django creates a new process for each test worker. Inside each of these processes, a thread is...

Hi @nemesifier @pandafy To implement revision tracking for API endpoints and models, there are several ways to implement the logic. Below are four approaches I came up with, and their...

I am working on this will make a draft PR soon.

## How to proceed? Hey @carltongibson, I am thinking of creating a sample real-time counter app using Django and Channels. I am thinking of adding a live counter app using...

## Updates - Added sample project as described above. - Add more settings to run the sample project in `conftest.py` - Added selenium tests for the sample project using `ChannelsLiveServerTestCase`...

Hi @carltongibson, Please let me know if the current sample project works or if there are any changes you'd like me to make.

## Updates - Minor space fixes suggested by @nemesifier - Added attribution for the SeleniumMixin, adapted from [OpenWISP](https://github.com/openwisp) - Source link to the original mixin in [openwisp-utils](https://github.com/openwisp/openwisp-utils/blob/master/openwisp_utils/tests/selenium.py) for reference and...

## Updates - Used the fix for `ChannelsLiveServerTestCase` from #2164 and keeping the sample project and test from this PR. - Cleaned up the `conftest.py` as suggested. **I had one...

Hi @carltongibson, I have made the changes @devkral suggested. Please let me know if this works