Skip to content

Commit

Permalink
Remove redundant calls (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
zakharova-anastasiia authored Jul 1, 2024
1 parent f1f21f9 commit df9f208
Showing 1 changed file with 2 additions and 28 deletions.
30 changes: 2 additions & 28 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,13 @@ exclude = '''
)/
'''


[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{39, 310, 311},format,lint,type
envlist = py{39,310,311}
[gh-actions]
python =
3: format,lint,type
3.9: py39
3.10: py310
3.11: py311
Expand All @@ -98,34 +96,10 @@ legacy_tox_ini = """
allowlist_externals = poetry
commands =
poetry install
poetry run pytest tests -v --ignore=tests/distributed_grpc
[testenv:format]
description = run code formatters
skip_install = true
deps =
black
isort
commands =
isort stalactite
black stalactite
[testenv:lint]
description = run linters
skip_install = true
deps =
pylint
commands =
pylint stalactite
[testenv:type]
description = run type checks
deps =
pyre-check
commands =
pyre restart
"""


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit df9f208

Please sign in to comment.