FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
GitPython/pyproject.toml at main · Sjord/GitPython · GitHub
Sjord
/
GitPython
Public
forked from
gitpython-developers/GitPython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
GitPython
/
pyproject.toml
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (36 loc) · 1.32 KB
Breadcrumbs
GitPython
/
pyproject.toml
Copy path
File metadata and controls
41 lines (36 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[
build-system
]
requires
= [
"
setuptools
"
,
"
wheel
"
]
build-backend
=
"
setuptools.build_meta
"
[
tool
.
pytest
.
ini_options
]
python_files
=
'
test_*.py
'
testpaths
=
'
test
'
#
space seperated list of paths from root e.g test tests doc/testing
addopts
=
'
--cov=git --cov-report=term --maxfail=10 --force-sugar --disable-warnings
'
filterwarnings
=
'
ignore::DeprecationWarning
'
#
--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
#
filterwarnings ignore::WarningType # ignores those warnings
[
tool
.
mypy
]
disallow_untyped_defs
=
true
no_implicit_optional
=
true
warn_redundant_casts
=
true
#
warn_unused_ignores = true
warn_unreachable
=
true
show_error_codes
=
true
implicit_reexport
=
true
#
strict = true
#
TODO: remove when 'gitdb' is fully annotated
[[
tool
.
mypy
.
overrides
]]
module
=
"
gitdb.*
"
ignore_missing_imports
=
true
[
tool
.
coverage
.
run
]
source
= [
"
git
"
]
[
tool
.
coverage
.
report
]
include
= [
"
*/git/*
"
]
omit
= [
"
*/git/ext/*
"
]
Back
|
FazBrowse Home
|
New Git URL