ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Py​Cover

Sublime Text 2/3 plugin for showing Python coverage information.

Details

  • 1.0.11
  • github.​com
  • github.​com
  • 6 years ago
  • 48 minutes ago
  • 13 years ago

Installs

  • Total 9K
  • Win 4K
  • Mac 3K
  • Linux 2K
Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25
Windows 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

PyCover

A plugin for Sublime Text 2/3 that can highlight lines of Python lacking test coverage, based on the output of Ned Batchelder's coverage.py, based on the original plugin for ST2, SublimePythonCoverage.

Default sublime theme Cobalt2 theme

Installation

Set up Sublime Package Control if you don't have it yet.

Go to Tools > Command Palette. Type Package Control: Install Package and hit enter. Type PyCover and hit enter.

PyCover relies on the external coverage.py package, which you can install with

pip install coverage

Usage

Toggle missing line highlights by running the show_python_coverage command, bound to ctrl+alt+shift+c by default. You can also access it with the Command Palette under “Toggle Uncovered Lines”, or via the right-click menu.

Settings

With the settings option "onload": true, PyCover will start highlighting missing lines as soon as your file loads.

The highlight_uncovered_lines option is used to toggle highlighting of uncovered lines. When this option is set to true, uncovered lines are highlighted in both editor window and minimap. However, this can be disruptive to the experience for some users, so by default this option is set to false.

Highlight uncovered lines of code

Details

PyCover works by looking in all parent directories of the active file until it finds a .coverage file (as produced by coverage.py). Obviously, it only works if that file exists and contains coverage information for the file you opened.

Once the .coverage file is found, PyCover invoke the coverage module with system Python (see the 'python' settings option to change this) and highlights any missing lines with a gutter mark.