• Stars
    star
    126
  • Rank 282,990 (Top 6 %)
  • Language
    Python
  • License
    MIT License
  • Created about 12 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A timer plugin for nosetests (how much time does every test take?)

nose-timer

A timer plugin for nosetests that answers the question: how much time does every test take?

https://travis-ci.org/mahmoudimus/nose-timer.svg?branch=master

Install

To install the latest release from PyPI:

pip install nose-timer

Or to install the latest development version from Git:

pip install git+git://github.com/mahmoudimus/nose-timer.git

Or to install the latest from source:

git clone https://github.com/mahmoudimus/nose-timer.git
cd nose-timer
pip install .

You can also make a developer install if you plan on modifying the source frequently:

pip install -e .

Usage

Run nosetests with the --with-timer flag, and you will see a list of the tests and the time spent by each one (in seconds):

myapp.tests.ABigTestCase.test_the_world_is_running: 56.0010s
myapp.tests.ABigTestCase.test_the_rest_of_the_galaxy_is_running: 2356.0010s

How do I show only the n slowest tests?

For example, to show only the 10 slowest tests, run nosetests with the --timer-top-n flag:

nosetests --with-timer --timer-top-n 10

How do I color the output and have pretty colors?

You can highlight slower tests using --timer-ok and --timer-warning flags. Default time unit is the second, but you can specify it explicitly, e.g. 1s, 100ms.

  • Tests which take less time than --timer-ok will be highlighted in green.
  • Tests which take less time than --timer-warning will be highlighted in yellow.
  • All other tests will be highlighted in red.

How do I turn off pretty colors?

In some cases, you may want to disable colors completely. This is done by using the --timer-no-color flag. This is useful when running tests in a headless console.

How do I filter results by colors?

It is possible to filter results by color. To do so, you can use the --timer-filter flag:

nosetests --with-timer --timer-filter ok
nosetests --with-timer --timer-filter warning
nosetests --with-timer --timer-filter error

Or to apply several filters at once:

nosetests --with-timer --timer-filter warning,error

How do I cause slow tests to fail?

You can cause any tests that exceed a threshold to fail by specifying the --timer-fail option:

  • If you specify --timer-fail warning, slow tests which would be displayed as a warning (i.e. that take more time than --timer-ok) will fail.
  • If you specify --timer-fail error, slow tests which would be displayed as an error (i.e. that take more time than --timer-warning) will fail.

For example, to fail any tests that take more than 5 seconds:

nosetests --with-timer --timer-warning 5.0 --timer-fail error

How do I export the results ?

Use the --timer-json-file <myfile.json> flag, it will save the result in the following format:

{
 'tests':
  {
  '<test key 1>':
    {
      'status': 'success'|'error'|'fail,
      'time': <float in s>
    },
  '<test key 2>':
    {
      'status': 'success'|'error'|'fail,
      'time': <float in s>
    },
   ....
 }

License

nose-timer is MIT Licensed library.

Contribute

  • Check for open issues or open a fresh issue to start a discussion around a feature idea or a bug.
  • Fork the repository on GitHub to start making your changes to the master branch (or branch off of it).
  • Write a test which shows that the bug was fixed or that the feature works as expected.
  • Send a pull request and bug the maintainer until it gets merged and published.
  • Make sure to add yourself to the author's file in setup.py and the Contributors section below :)

Contributors

More Repositories

1

sqlalchemy-citext

CITEXT type for SQLAlchemy
Python
26
star
2

irssi-python

my continuation for irssi, the client of the future but with python scripting instead of perl!
C
24
star
3

awesome-validation-python

Python Validator Libraries
17
star
4

pyfastmap

A python implementation of FastMap, a fast algorithm for indexing, data-mining and visualization of traditional and multimedia datasets
Python
14
star
5

docker-host-osx

Allows a seamless native-like Docker experience on Mac OSX without using boot2docker.
Python
12
star
6

remote-box

my attempt at a remote development environment
Shell
10
star
7

ircer

IRC to HipChat Relay
Python
9
star
8

dotfiles

The best damn dot files repository ever.
Shell
7
star
9

.emacs.d

My personal .emacs.d (first based on emacs starter kit, then prelude, now spacemacs)
Emacs Lisp
5
star
10

flamingo

My hacking on the flamingo project which focuses on data cleaning, i.e., how to deal with errors and inconsistencies in information systems.
C++
5
star
11

nose-setenv

sets env variables in nose
Python
4
star
12

awesome-keto

Collection of Keto Resources
3
star
13

bin

Stuff that goes into my user ~/bin directory, various cool utilities
Perl
3
star
14

py2star

Converts python files to starlark (or Larky) compatible scripts.
Python
3
star
15

diff2html

A better diff2html library to give differences in HTML from files/strings. Work originally based off http://kafka.fr.free.fr/diff2html/
Python
3
star
16

clubhouse

A proper python client for the clubhouse api @ https://clubhouse.io/api/rest/v2/
Python
2
star
17

ac

Java
2
star
18

mahmoudimus.com

my hacker moleskine
CSS
2
star
19

jexer

Java
2
star
20

MiniGlome-Archive.org-Downloader

Python
2
star
21

dockers

Test ansible playbooks using docker and docker-compose
Shell
1
star
22

docker-java8app

OracleJRE Java8 app for easy JAR deployments
1
star
23

.vim

My vim configurations
Vim Script
1
star
24

charmr

command-line text manipulation
Emacs Lisp
1
star
25

synthetic-data-generation-framework

From the paper, "Plausible Deniability for Privacy-Preserving Data Synthesis" by Vincent Bindschaedler (https://vbinds.ch/node/1)
C++
1
star
26

avro-http-example

Apache Avro HTTP Example
Java
1
star
27

cppp

Mirror of Brian Raiter's cppp. cppp is a partial C preprocessor that can automatically resolve #ifdef statements.
C
1
star
28

atlassian-util-concurrent

Java
1
star
29

lichen-lang

mercurial-mirror: Lichen is both a Python-like language and a toolchain for that language.
Python
1
star