Opened 4 years ago

Closed 4 years ago

#32282 closed New feature (duplicate)

Styling django test's output

Reported by: Diptesh Choudhuri Owned by: nobody
Component: Testing framework Version: dev
Severity: Normal Keywords: testing
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I plan to implement the following:

  1. Colorizing the output. The failing tests will be highlighted in red, the passing ones will be shown in green. A similar PR #22449 exists.
  2. Showing the number of tests collected, run, failed and skipped.
  3. Showing what percentage of tests have been run while the tests are running.

I would like the communities feedback on this and whether this will be feasible (or even achievable).
I plan to take this up as my GSoC proposal for 2021.

Change History (1)

comment:1 by Mariusz Felisiak, 4 years ago

Resolution: duplicate
Status: newclosed
UI/UX: unset
  1. Colorizing the output. The failing tests will be highlighted in red, the passing ones will be shown in green. A similar PR #22449 exists.

Colorized test results is tracked in #22449.

  1. Showing the number of tests collected, run, failed and skipped.

Django's test runner already displays this information.

  1. Showing what percentage of tests have been run while the tests are running.

IMO it's a duplicate of #29105.

By the way, you'll reach a wider audience if you write to the DevelopersMailingList about your ideas.

Note: See TracTickets for help on using tickets.
Back to Top