Eduard-Cristian Stefan

Results 10 comments of Eduard-Cristian Stefan

The Solarized theme works on my PC (so far) with the following changes: ``` @@ -338,7 +338,7 @@ function setGitPrompt() { git_prompt_config if [[ ! -e "${repo}" ]] || [[...

A good default might reduce the page reloads, so the server load would be reduced. (I vote for the last updated date) Is it possible to gather some usage data...

When sorting by dates, please use a secondary sort order by title, it would preserve the order for series recorded in the same day (like 'ABC part 1 - xxx',...

There is a good reason for using small commits :wink: @squiddy please submit a patch for showing the last updated date, and another one for the default sort order (ascending...

@willkg just the default sort order, no UI changes: ``` videos = (obj.video_set.live().select_related('category') - .prefetch_related('speakers')) + .prefetch_related('speakers') + .order_by('title')) ```

I think your proposal is out of scope, unfortunately. I have solved similar scenarios with a separate Python script that handles the execution and/or report processing.

I don't have a private pypi server yet, so I've merged the #90 and #91 PRs in my [fork](https://github.com/alexandrul/pytest-json-report-wip) and published a temporary package on [pypi](https://pypi.org/project/pytest-json-report-wip/). You can use it...

@andrewsiemer could you provide more info, please? - OS - python version (from https://www.python.org/downloads/windows/, I hope) - the output of `pip freeze`

@eskerda I don't have a private pypi server yet, so I've merged your changes in my [fork](https://github.com/alexandrul/pytest-json-report-wip) and published a temporary package on [pypi](https://pypi.org/project/pytest-json-report-wip/). You can use it in `requirements.txt`...

`-p no:randomly` is not working in some corner cases: https://github.com/pytest-dev/pytest-randomly/issues/647