Skip to content

Commit

Permalink
Add __init__ and update pyproject pytest flag (#190)
Browse files Browse the repository at this point in the history
* Expand flag to full name
* Add missing __init__ file
  • Loading branch information
eyurtsev authored Jul 11, 2023
1 parent ba20aa1 commit 16c4f25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ html = ["markdownify"]
[tool.poe.tasks]
black = "black"
ruff = "ruff"
pytest.cmd = "py.test -s --durations=5 -W error::RuntimeWarning --cov --cov-config=.coveragerc --cov-report xml --cov-report term-missing:skip-covered"
pytest.cmd = "py.test --capture=no --durations=5 -W error::RuntimeWarning --cov --cov-config=.coveragerc --cov-report xml --cov-report term-missing:skip-covered"
mypy = "mypy . --pretty --show-error-codes"
fix = { shell = "poe black . && poe ruff --fix ." }
fix_docs = "black docs"
Expand All @@ -61,7 +61,7 @@ fix_strings = "black kor --preview"
test = { shell = "poe black . --check --diff && poe ruff . && poe pytest && poe mypy" }
# Use to auto-generate docs
apidoc = "sphinx-apidoc -o docs/source/generated kor"
pyintegration = { shell = "py.test -s ./tests/integration/*.py" }
pyintegration = { shell = "py.test --capture=no ./tests/integration/*.py" }
integration = { shell = "poe black . --check --diff && poe ruff . && poe pyintegration && poe mypy" }

[tool.ruff]
Expand Down
Empty file added tests/integration/__init__.py
Empty file.

0 comments on commit 16c4f25

Please sign in to comment.