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

Simple​Cov

by sentience ST3

Visualise SimpleCov Ruby test coverage in Sublime Text 3.

Labels testing, ruby

Details

  • 1.0.0
  • github.​com
  • 9 years ago
  • 1 hour ago
  • 9 years ago

Installs

  • Total 567
  • Win 85
  • Mac 359
  • Linux 123
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 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 1 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
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 1 0 0 0 0 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 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SimpleCov for Sublime Text 3

A plugin for Sublime Text 3 for visualising SimpleCov code coverage data in your editor.

Features

  • Toggle highlighting of covered (green) and uncovered (red) lines of code.
    • Shade of green indicates coverage level (with configurable thresholds).
    • Highlight colors configurable.
  • View whole file and current line coverage statistics in the status bar.
    • Can be disabled in user settings.
  • View list of all covered files in project, from least to most coverage.
    • Includes color-coded coverage graph (colors configurable).
    • Supports wide and compact layouts depending on window width.

Installation

First, you must have SimpleCov installed and configured for your project.

Next, install and set up the simplecov-json formatter. If you’re using SimpleCov 0.9 or later, you have the option of using multiple formatters, so you can continue to generate the default HTML report along with the JSON report required by this package.

Finally, install this package using Package Control:

  1. With Package Control installed, go to Tools > Command Palette.
  2. Select the Package Control: Install Package command and hit Enter.
  3. Type SimpleCov and hit Enter.

Usage

Run your tests to generate a coverage/coverage.json file in your project. Then:

  • Move your cursor around in one of the project’s Ruby files to see file and line coverage info in the status bar.
  • Open Command Palette and choose SimpleCov: Toggle Coverage Highlight to display file coverage as green and red colored highlights. By default, lines covered once are highlighted in dark green, lines covered twice are highlighted in brighter green, and lines covered 50 or more times are displayed in very bright green. Invoke the command again to turn highlights off.
    • Note: Currently, to update the highlights after a test run, you’ll need to toggle highlighting off and then on again. This will be improved in a future update.
  • Open Command Palette and choose SimpleCov: Show Project Coverage to open a panel containing a list of covered Ruby files in your project, from least to most coverage, with a color-coded bar graph indicating the coverage for each file.

Ignoring Files

Common “non-code” Ruby files, such as spec files, are ignored automatically. Add a .covignore file to your project root in order to add additional, custom ignores.