Skip to content

Commit

Permalink
Move pytest config to pytest.ini because of issues with ptw joeyespo/…
Browse files Browse the repository at this point in the history
  • Loading branch information
anze3db committed Feb 5, 2023
1 parent c1b76eb commit c3f97c0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=. --cov-report term-missing --verbose --reuse-db --durations=3"
python_files = ["tests.py"]
DJANGO_SETTINGS_MODULE = "almograve.settings"

[tool.mypy]
python_version = "3.11"
plugins = ["mypy_django_plugin.main"]
Expand Down
6 changes: 6 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[pytest]
minversion = 6.0
addopts = --cov=. --cov-report term-missing --verbose --reuse-db --durations=3
python_files =
tests.py
DJANGO_SETTINGS_MODULE = almograve.settings

0 comments on commit c3f97c0

Please sign in to comment.