Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Zilberkant committed Jul 27, 2020
1 parent 0ec41e2 commit 9d38be9
Show file tree
Hide file tree
Showing 98 changed files with 9,722 additions and 5,040 deletions.
38 changes: 38 additions & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# ----------------------------------------------------------------------------
# Copyright 2019 ARM Limited or its affiliates
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------

# https://coverage.readthedocs.io/en/latest/config.html

[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
raise argparse.ArgumentTypeError

# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

.idea/
*.pyc
*.so
build/
*.egg-info/
venv/
dist/
.coverage
htmlcov/
.tox/
.python-version
tests/mtool/test_data/
.manifest-dev-tool/
.vscode/
Loading

0 comments on commit 9d38be9

Please sign in to comment.