mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-25 11:04:11 +03:00
treat warnings as errors when running the tests
This commit is contained in:
parent
28c71c58f7
commit
0a3c2f742f
2
Makefile
2
Makefile
|
@ -10,7 +10,7 @@ dev-setup:
|
|||
|
||||
.PHONY: tests ## Run unit tests
|
||||
tests:
|
||||
PYTHONPATH=. pytest graphene_django --cov=graphene_django -vv
|
||||
PYTHONPATH=. pytest -Werror graphene_django --cov=graphene_django -vv
|
||||
|
||||
.PHONY: format ## Format code
|
||||
format:
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -34,7 +34,7 @@ deps =
|
|||
django42: Django>=4.2,<4.3
|
||||
django50: Django>=5.0,<5.1
|
||||
djangomain: https://github.com/django/django/archive/main.zip
|
||||
commands = {posargs:pytest --cov=graphene_django graphene_django examples}
|
||||
commands = {posargs:pytest -Werror --cov=graphene_django graphene_django examples}
|
||||
|
||||
[testenv:pre-commit]
|
||||
skip_install = true
|
||||
|
|
Loading…
Reference in New Issue
Block a user