Remove garbage files
authorDmitry Burmistrov <dburmistrov@mirantis.com>
Thu, 26 Sep 2013 16:39:20 +0000 (20:39 +0400)
committerDmitry Burmistrov <dburmistrov@mirantis.com>
Thu, 26 Sep 2013 16:39:20 +0000 (20:39 +0400)
.coveragerc [deleted file]
.gitignore [deleted file]
.gitreview [deleted file]
.mailmap [deleted file]
.pylintrc [deleted file]
.testr.conf [deleted file]

diff --git a/.coveragerc b/.coveragerc
deleted file mode 100644 (file)
index 5b10a11..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-[run]
-branch = True
-source = neutron
-omit = neutron/tests/*,neutron/plugins/cisco/test/*,neutron/openstack/*
-
-[report]
-ignore-errors = True
diff --git a/.gitignore b/.gitignore
deleted file mode 100644 (file)
index 038c6d2..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-AUTHORS
-build/*
-build-stamp
-ChangeLog
-cover/
-.coverage
-covhtml/
-dist/
-doc/build
-*.DS_Store
-*.pyc
-neutron.egg-info/
-neutron/vcsversion.py
-neutron/versioninfo
-pbr*.egg/
-quantum.egg-info/
-quantum/vcsversion.py
-quantum/versioninfo
-run_tests.err.log
-run_tests.log
-setuptools*.egg/
-subunit.log
-.testrepository
-.tox/
-.venv/
-*.mo
-*.swp
-*.swo
diff --git a/.gitreview b/.gitreview
deleted file mode 100644 (file)
index 184583f..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-[gerrit]
-host=review.openstack.org
-port=29418
-project=openstack/neutron.git
diff --git a/.mailmap b/.mailmap
deleted file mode 100644 (file)
index 7bdd06e..0000000
--- a/.mailmap
+++ /dev/null
@@ -1,7 +0,0 @@
-# Format is:
-# <preferred e-mail> <other e-mail 1>
-# <preferred e-mail> <other e-mail 2>
-lawrancejing <lawrancejing@gmail.com> <liuqing@windawn.com>
-Jiajun Liu <jiajun@unitedstack.com> <iamljj@gmail.com>
-Zhongyue Luo <zhongyue.nah@intel.com> <lzyeval@gmail.com>
-Kun Huang <gareth@unitedstack.com> <academicgareth@gmail.com>
diff --git a/.pylintrc b/.pylintrc
deleted file mode 100644 (file)
index 021856b..0000000
--- a/.pylintrc
+++ /dev/null
@@ -1,43 +0,0 @@
-# The format of this file isn't really documented; just use --generate-rcfile
-[MASTER]
-# Add <file or directory> to the black list. It should be a base name, not a
-# path. You may set this option multiple times.
-ignore=test
-
-[Messages Control]
-# NOTE(justinsb): We might want to have a 2nd strict pylintrc in future
-# C0111: Don't require docstrings on every method
-# W0511: TODOs in code comments are fine.
-# W0142: *args and **kwargs are fine.
-# W0622: Redefining id is fine.
-disable=C0111,W0511,W0142,W0622
-
-[Basic]
-# Variable names can be 1 to 31 characters long, with lowercase and underscores
-variable-rgx=[a-z_][a-z0-9_]{0,30}$
-
-# Argument names can be 2 to 31 characters long, with lowercase and underscores
-argument-rgx=[a-z_][a-z0-9_]{1,30}$
-
-# Method names should be at least 3 characters long
-# and be lowecased with underscores
-method-rgx=([a-z_][a-z0-9_]{2,50}|setUp|tearDown)$
-
-# Module names matching neutron-* are ok (files in bin/)
-module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(neutron-[a-z0-9_-]+))$
-module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+)|(quantum-[a-z0-9_-]+))$
-
-# Don't require docstrings on tests.
-no-docstring-rgx=((__.*__)|([tT]est.*)|setUp|tearDown)$
-
-[Design]
-max-public-methods=100
-min-public-methods=0
-max-args=6
-
-[Variables]
-
-# List of additional names supposed to be defined in builtins. Remember that
-# you should avoid to define new builtins when possible.
-# _ is used by our localization
-additional-builtins=_
diff --git a/.testr.conf b/.testr.conf
deleted file mode 100644 (file)
index 01d160e..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-[DEFAULT]
-test_command=OS_STDOUT_CAPTURE=1 OS_STDERR_CAPTURE=1 OS_LOG_CAPTURE=1 ${PYTHON:-python} -m subunit.run discover -t ./ neutron/tests/unit $LISTOPT $IDOPTION
-test_id_option=--load-list $IDFILE
-test_list_option=--list