Skip to content

Commit

Permalink
Merge pull request #63 from MantisAI/NEW/add-code-with-examples
Browse files Browse the repository at this point in the history
NEW: add a report summary
  • Loading branch information
davidsbatista committed Apr 26, 2023
2 parents 5422413 + 290229c commit 057a63f
Show file tree
Hide file tree
Showing 12 changed files with 224 additions and 1,074 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ repos:
language: python
language_version: python3.8
types: [python]
exclude: ^tests/
exclude: examples|tests
require_serial: true # use require_serial so that script is only called once per commit
verbose: true # print the number of files as a sanity-check
args: [--config, setup.cfg]
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,20 @@ dist:
pypi_upload: dist
python -m twine upload dist/*

clean:
rm -rf dist src/nervaluate.egg-info .tox .coverage coverage.xml .mypy_cache .venv .pytest_cache

.PHONY: changelog
changelog:
@gitchangelog > CHANGELOG.rst


# cleaning stuff

clean:
rm -rf dist src/nervaluate.egg-info .tox .coverage coverage.xml .mypy_cache .pytest_cache

clean_venv:
rm -rf .venv


# code quality related measures

.PHONY: test
Expand Down
2 changes: 1 addition & 1 deletion coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ coverage:
project:
default:
target: auto
threshold: 10%
threshold: 90%
patch:
default:
enabled: no
Expand Down

0 comments on commit 057a63f

Please sign in to comment.