Skip to content

Commit

Permalink
Merge branch 'release/2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
abg committed Aug 5, 2014
2 parents a7e07f4 + 989d234 commit 8019f83
Show file tree
Hide file tree
Showing 193 changed files with 12,263 additions and 11,859 deletions.
29 changes: 29 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[run]
branch = True
source = dbsake

[report]
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover

# Don't complain about missing debug-only code:
def __repr__
if self\.debug

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:

ignore_errors = True
show_missing = True
include = dbsake/*
omit = dbsake/util/enum.py

[html]
directory = coverage_html_report
14 changes: 5 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pip-log.txt
.coverage
.tox
nosetests.xml
htmlcov

# Translations
*.mo
Expand All @@ -34,14 +35,9 @@ nosetests.xml
.project
.pydevproject

# Complexity
output/*.html
output/*/index.html

# Sphinx
docs/_build

# Coverage
htmlcov/

# TextMate
.tm_properties

# Local env
.envs
2 changes: 2 additions & 0 deletions .travis-test-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# travis specific requirements go here
coveralls
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Config file for automatic testing at travis-ci.org

language: python

python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -rrequirements.txt -rtest_requirements.txt -r.travis-test-requirements.txt

# command to run tests, e.g. python setup.py test
script: make test

after_success:
- coveralls
13 changes: 13 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
=======
Credits
=======

Development Lead
----------------

* Andrew Garner <andrew.garner@rackspace.com>

Contributors
------------

None yet. Why not be the first?

0 comments on commit 8019f83

Please sign in to comment.