summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-19 13:59:54 +0100
committerGitHub <noreply@github.com>2021-07-19 13:59:54 +0100
commitbce21f1bcc2537563f8c9dc062b3356d1e393586 (patch)
treeb4cae0bd44bf9dc4df7d08b13433a432d77ca5df /tox.ini
parent1a6dd81d72b3e507c066d2ce31e2d2b003b592f2 (diff)
downloadgitpython-bce21f1bcc2537563f8c9dc062b3356d1e393586.tar.gz
Delete tox.ini
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini61
1 files changed, 0 insertions, 61 deletions
diff --git a/tox.ini b/tox.ini
deleted file mode 100644
index 7231f045..00000000
--- a/tox.ini
+++ /dev/null
@@ -1,61 +0,0 @@
-[tox]
-envlist = py36,py37,py38,py39,flake8
-
-[testenv]
-commands = python -m unittest --buffer {posargs}
-deps = -r{toxinidir}/requirements.txt
- -r{toxinidir}/test-requirements.txt
-passenv = HOME
-
-[testenv:cover]
-commands = coverage run --omit="git/test/*" -m unittest --buffer {posargs}
- coverage report
-
-[testenv:flake8]
-commands = flake8 --ignore=W293,E265,E266,W503,W504,E704,E731 {posargs}
-
-[testenv:type]
-description = type check ourselves
-deps =
- {[testenv]deps}
- mypy
-commands =
- mypy -p git
-
-[testenv:venv]
-commands = {posargs}
-
-[flake8]
-#show-source = True
-# E265 = comment blocks like @{ section, which it can't handle
-# E266 = too many leading '#' for block comment
-# E731 = do not assign a lambda expression, use a def
-# W293 = Blank line contains whitespace
-# W504 = Line break after operator
-# E707 = multiple statements in one line - used for @overloads
-ignore = E265,W293,E266,E731,E704, W504
-max-line-length = 120
-exclude = .tox,.venv,build,dist,doc,git/ext/
-
-[pytest]
-python_files =
- test_*.py
-
-# space seperated list of paths from root e.g test tests doc/testing
-testpaths = test
-
-# --cov coverage
-# --cov-report term # send report to terminal term-missing -> terminal with line numbers html xml
-# --cov-report term-missing # to terminal with line numbers
-# --cov-report html:path # html file at path
-# --maxfail # number of errors before giving up
-# -disable-warnings # Disable pytest warnings (not codebase warnings)
-#-rf # increased reporting of failures
-# -rE # increased reporting of errors
-# --ignore-glob=**/gitdb/* # ignore glob paths
-addopts = --cov=git --cov-report=term --maxfail=50 -rf --verbosity=0 --disable-warnings
-
-# ignore::WarningType # ignores those warnings
-# error # turn any unignored warning into errors
-filterwarnings =
- ignore::DeprecationWarning