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

Django​Nose​Test​Runner

by dobarkod ALL

SublimeText2 plugin for running Django tests from the currently selected file using Nose test runner.

Details

  • 2016.02.10.09.04.35
  • github.​com
  • github.​com
  • 8 years ago
  • 2 hours ago
  • 11 years ago

Installs

  • Total 3K
  • Win 2K
  • Mac 514
  • Linux 860
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 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 2 0 0 0 0 0 0 0 0 0 0 0 0
Mac 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 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

DjangoNoseTestRunner

Do you hate waiting seconds for the complete test suite to finish when all you're trying to do is get this one test to pass? So do we.

DjangoNoseTestRunner is a plugin for Sublime Text 2/3 that allows you to run the test under cursor in the currently opened test file.

The plugin supports running tests using django-nose (recommended) or the standard Django test runner.

Example usage

Open one of your test files, navigate to a test function you want to run, and hit Ctrl-T. Look at the output console for the test results.

Installation

  • Download the plugin from GitHub - here's a link to the current master.
  • Unzip the plugin to your Sublime Text Packages directory (eg. ~/.config/sublime-text-2/Packages/ for Sublime Text 2 on Linux)

Configuration

If you're using Virtualenv, have separate Django settings module for tests or want to use nose, you'll want to add a per-project configuration so that the plugin can run your tests properly.

To add the per-project configuration, open your project file (Project->Edit in the menu), and change it to looks like this:

{
    "folders": [ ... ],
    "settings":
    {
        "django-nose-test": {
            "python": "/path/to/your/virtualenv/bin/python",
            "django-settings": "myproject.settings.test",
            "doted-notation": true,  // optional and only used if "use-nose" is false
            "apps-dir": "my_apps",  // optional and only used if "doted-notation" is true
            "use-nose": true,
            "nose-options": ["--nocapture"] // optional and only used if use-nose is true
        }
    }
}

The django-nose-test dictionary are the settings for DjangoNoseTestRunner.

The doted-notation required for Django 1.6 or django-discover-runner.

Usage

Plugin can run a single test, multiple tests, entire test case or the entire file.

To run a single test, just position your cursor somewhere in the test function body and hit Ctrl-T.

To run multiple tests, select (any) bit of text from each of the functions you want to run and hit Ctrl-T. The functions can be in the same test case class, or in the separate classes.

You can also run the entire test case (all the test functions in the class), or multiple test cases, by selecting (any) bit of text from the class body that's not in the the test function (eg. class FooTest(TestCase): lines).

If the cursor is not inside any test function or test case class when you hit Ctrl-T, all the test from the file (but just that file) will be run.

If you're using nose, the tests are located per-file (as described above). If you're using the standard Django test runner, the tests are per-app (one test method, one TestCase or the entire app test suite).

License and copyright

Copyright © 2013. DjangoNoseTestRunner contributors

You can use, modify and distribute this plugin under the terms of the MIT public license.