From 7858ae023acbcdc5aff394451b1bd694a2ed7fdb Mon Sep 17 00:00:00 2001 From: Dmitry Burmistrov Date: Thu, 26 Sep 2013 20:39:20 +0400 Subject: [PATCH] Remove garbage files --- .coveragerc | 7 ------- .gitignore | 28 ---------------------------- .gitreview | 4 ---- .mailmap | 7 ------- .pylintrc | 43 ------------------------------------------- .testr.conf | 4 ---- 6 files changed, 93 deletions(-) delete mode 100644 .coveragerc delete mode 100644 .gitignore delete mode 100644 .gitreview delete mode 100644 .mailmap delete mode 100644 .pylintrc delete mode 100644 .testr.conf diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index 5b10a1115..000000000 --- a/.coveragerc +++ /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 index 038c6d28e..000000000 --- a/.gitignore +++ /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 index 184583f0d..000000000 --- a/.gitreview +++ /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 index 7bdd06e5e..000000000 --- a/.mailmap +++ /dev/null @@ -1,7 +0,0 @@ -# Format is: -# -# -lawrancejing -Jiajun Liu -Zhongyue Luo -Kun Huang diff --git a/.pylintrc b/.pylintrc deleted file mode 100644 index 021856b92..000000000 --- a/.pylintrc +++ /dev/null @@ -1,43 +0,0 @@ -# The format of this file isn't really documented; just use --generate-rcfile -[MASTER] -# Add 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 index 01d160ec5..000000000 --- a/.testr.conf +++ /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 -- 2.32.3