Skip to content

Commit

Permalink
build: misc minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Sep 1, 2021
1 parent 07bdbb5 commit f1402f3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
*.py[cod]
/shtab/_dist_ver.py
__pycache__/

# Packages
/shtab/_dist_ver.py
/*.egg*/
/build/
/dist/

# Unit test / coverage reports
/.coverage
/.pytest_cache/
/.coverage*
/coverage.xml
__pycache__/
/.pytest_cache/
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ repos:
name: Check TODO
language: pygrep
entry: TODO
args: [-i]
types: [text]
exclude: ^(.pre-commit-config.yaml|.github/workflows/test.yml)$
args: [-i]
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,7 @@ known_first_party=shtab

[tool:pytest]
timeout=5
addopts=-v --tb=short -rxs -W=error --log-level=debug --durations=0 --cov=shtab --cov-report=term-missing --cov-report=xml
log_level=DEBUG
python_files=test_*.py
testpaths=tests
addopts=-v --tb=short -rxs -W=error --durations=0 --cov=shtab --cov-report=term-missing --cov-report=xml

0 comments on commit f1402f3

Please sign in to comment.