This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
ignore_moves.py v0.2 | |
Filter relocated lines from a unified diff format stream. | |
Offered under the terms of the MIT License at github.com | |
Taken from http://stackoverflow.com/questions/1380333/ | |
""" | |
import sys | |
from optparse import OptionParser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
main() { | |
configure_ssh_known_hosts | |
configure_mysql_ram_disk | |
configure_idle_tracking | |
} | |
configure_ssh_known_hosts() { | |
echo configuring ssh known hosts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""This plugin provides test timings to identify which tests might be | |
taking the most. From this information, it might be useful to couple | |
individual tests nose's `--with-profile` option to profile problematic | |
tests. | |
This plugin is heavily influenced by nose's `xunit` plugin. | |
Add this command to the way you execute nose:: | |
--with-test-timer |