kopia lustrzana https://github.com/corrscope/corrscope
Add `poetry run` commands to check coverage
rodzic
2dab83408f
commit
3e55e5b1a0
|
@ -160,7 +160,15 @@ crashlytics-build.properties
|
||||||
fabric.properties
|
fabric.properties
|
||||||
|
|
||||||
|
|
||||||
|
# https://raw.githubusercontent.com/github/gitignore/master/Global/VisualStudioCode.gitignore
|
||||||
|
.vscode/*
|
||||||
|
# !.vscode/settings.json # contains machine-specific python interpreter paths
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
|
|
||||||
|
# Project-specific
|
||||||
*-cprofile-*
|
*-cprofile-*
|
||||||
*.ipynb
|
*.ipynb
|
||||||
.directory
|
.directory
|
||||||
|
|
|
@ -30,6 +30,15 @@ codecov = "^2.0"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
corr = 'corrscope.cli:main'
|
corr = 'corrscope.cli:main'
|
||||||
|
run = 'scripts:run'
|
||||||
|
dcover = 'scripts:dcover'
|
||||||
|
rcover = 'scripts:rcover'
|
||||||
|
hcover = 'scripts:hcover'
|
||||||
|
cover = 'scripts:cover'
|
||||||
|
diff = 'scripts:diff'
|
||||||
|
report = 'scripts:report'
|
||||||
|
html = 'scripts:html'
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 88
|
line-length = 88
|
||||||
py36 = true
|
py36 = true
|
||||||
|
@ -37,5 +46,3 @@ exclude = 'utils/scipy_'
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry>=0.12"]
|
requires = ["poetry>=0.12"]
|
||||||
build-backend = "poetry.masonry.api"
|
build-backend = "poetry.masonry.api"
|
||||||
|
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue