-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
3a7ed54
commit e93cf3b
Showing
4 changed files
with
24 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["poetry-core"] | ||
|
||
[tool.coverage.report] | ||
exclude_lines = ["pragma: no cover","assert False[,^]","never_called\\(","if False:"] | ||
exclude_lines = ["pragma: no cover", "assert False[,^]", "never_called\\(", "if False:"] | ||
|
||
[tool.coverage.run] | ||
source = ["src","tests","codecrumbs"] | ||
parallel = true | ||
branch = true | ||
data_file = "$TOP/.coverage" | ||
parallel = true | ||
source = ["src", "tests", "codecrumbs"] | ||
|
||
[tool.poetry] | ||
name = "codecrumbs" | ||
version = "0.1.0" | ||
description = "leave codecrumbs behind so that other can adopt the changes" | ||
authors = ["Frank Hoffmann <[email protected]>"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Framework :: Pytest", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: Implementation :: CPython" | ||
] | ||
description = "leave codecrumbs behind so that other can adopt the changes" | ||
homepage = "https://github.com/15r10nk/codecrumbs" | ||
license = "MIT" | ||
name = "codecrumbs" | ||
readme = "README.md" | ||
repository = "https://github.com/15r10nk/codecrumbs" | ||
homepage = "https://github.com/15r10nk/codecrumbs" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Framework :: Pytest", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
] | ||
version = "0.1.0" | ||
|
||
[tool.poetry.dependencies] | ||
asttokens = {version = "^2.2.1", python = ">=3.11"} | ||
executing = {version = "^1.2.0", python = ">=3.11"} | ||
python = "^3.8" | ||
executing = {version="^1.2.0", python=">=3.11"} | ||
asttokens = {version="^2.2.1", python=">=3.11"} | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.2.0" | ||
inline-snapshot = "^0.1.1" | ||
coverage = {extras = ["toml"], version = "^6.5.0"} | ||
patch = "^1.16" | ||
coverage-enable-subprocess = "^1.0" | ||
inline-snapshot = "^0.1.1" | ||
mypy = "^0.990" | ||
patch = "^1.16" | ||
pytest = "^7.2.0" | ||
pytest-cov = "^4.0.0" | ||
coverage-enable-subprocess = "^1.0" | ||
|
||
[tool.poetry.group.doc.dependencies] | ||
mkdocs = "^1.4.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
""" | ||
PYTEST_DONT_REWRITE | ||
""" | ||
|
||
import ast | ||
import sys | ||
|
||
|