Skip to content

Commit

Permalink
test: run toml-sort recursively
Browse files Browse the repository at this point in the history
  • Loading branch information
pyoor committed Aug 6, 2021
1 parent 0be0899 commit 1d1a867
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ repos:
rev: v0.19.0
hooks:
- id: toml-sort
args: [--check, -a]
- repo: local
hooks:
- id: pylint
Expand Down
54 changes: 27 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = ["poetry>=1.0.5"]
build-backend = "poetry.masonry.api"
requires = ["poetry>=1.0.5"]

[tool.coverage.report]
exclude_lines = [
Expand All @@ -23,17 +23,17 @@ known_first_party = "bugmon"
profile = "black"

[tool.mypy]
exclude = "^.*tests.*$"
disallow_subclassing_any = "False"
exclude = "^.*tests.*$"
ignore_missing_imports = "True"
implicit_reexport = "True"
strict = "True"

[tool.poetry]
name = "bugmon"
readme = "README.md"
description = "A python module for analyzing SpiderMonkey and Firefox bugs"
version = "1.1.0"
authors = [
"Christian Holler <choller@mozilla.com>",
"Jason Kratzer <jkratzer@mozilla.com>"
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
Expand All @@ -43,44 +43,44 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
description = "A python module for analyzing SpiderMonkey and Firefox bugs"
homepage = "https://github.com/MozillaSecurity/bugmon"
keywords = ["fuzz", "fuzzing", "security", "test", "testing", "bisection"]
authors = [
"Christian Holler <choller@mozilla.com>",
"Jason Kratzer <jkratzer@mozilla.com>"
]
license = "MPL-2.0"
maintainers = [
"Mozilla Fuzzing Team <fuzzing@mozilla.com>"
]
license = "MPL-2.0"
name = "bugmon"
readme = "README.md"
repository = "https://github.com/MozillaSecurity/bugmon"
homepage = "https://github.com/MozillaSecurity/bugmon"
version = "1.1.0"

[tool.poetry.dependencies]
autobisect = "^3.1.0"
black = "^19.10b0"
bugsy = { git = "https://github.com/AutomatedTester/Bugsy.git" }
fuzzfetch = "1.3.3"
python = "^3.6.1"
toml = "^0.10.2"
fuzzfetch = "1.3.3"
bugsy = { git = "https://github.com/AutomatedTester/Bugsy.git" }
black = "^19.10b0"
autobisect = "^3.1.0"

[tool.poetry.dev-dependencies]
codecov = "^2.1.11"
flake8 = "^3.8.3"
flake8-isort = "^4.0.0"
flake8-quotes = "^2.1.1"
pytest = "^6.2.3"
pytest-flake8 = "^1.0.7"
pytest-black = "^0.3.12"
gitlint = "^0.15.1"
mypy = "v0.902"
pre-commit = "^2.13.0"
tox = "^3.14.5"
pylint = "^2.4.4"
pytest-pylint = "^0.18.0"
pytest-mock = "^3.6.0"
codecov = "^2.1.11"
pytest = "^6.2.3"
pytest-black = "^0.3.12"
pytest-cov = "^2.11.1"
toml-sort = "^0.19.0"
gitlint = "^0.15.1"
pytest-flake8 = "^1.0.7"
pytest-mock = "^3.6.0"
pytest-pylint = "^0.18.0"
python-semantic-release = "^7.16.1"
mypy = "v0.902"
toml-sort = "^0.19.0"
tox = "^3.14.5"
types-requests = "^2.25.0"

[tool.poetry.scripts]
Expand Down Expand Up @@ -119,8 +119,8 @@ disable = [
log_level = "DEBUG"

[tool.semantic_release]
version_toml = "pyproject.toml:tool.poetry.version"
build_command = "pip install poetry && poetry build"
commit_subject = "chore(release): {version} [skip ci]"
upload_to_pypi = false
upload_to_release = false
version_toml = "pyproject.toml:tool.poetry.version"

0 comments on commit 1d1a867

Please sign in to comment.