-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpytest.ini
More file actions
18 lines (17 loc) · 1.23 KB
/
pytest.ini
File metadata and controls
18 lines (17 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[pytest]
DJANGO_SETTINGS_MODULE = tests.settings
; addopts = --cov=django_drf_filepond
testpaths =
tests
filterwarnings =
; Ignore the RemovedInDjango41Warning generated by the use of default_app_config
ignore:.*Django now detects this configuration automatically:PendingDeprecationWarning
; Ignore the RemovedInDjango5Warning generated by the use of the USE_L10N setting since this
; only applies to the test settings and not the app itself.
ignore:.*The USE_L10N setting is deprecated\. Starting with Django 5.0:PendingDeprecationWarning
; Ignore CryptographyDeprecationWarnings for removal of cryptography support for py2.7, 3.5, 3.6
ignore:.*Python 2 is no longer supported by the Python core team\. Support for it is now deprecated in cryptography:UserWarning
ignore:.*Python 3\.5 support will be dropped in the next release of cryptography:UserWarning
ignore:.*Python 3\.6 is no longer supported by the Python core team\. Therefore, support for it is deprecated in cryptography:UserWarning
; Ignore the deprecation warning for the use of datetime.utcnow() by the httpretty dependency
ignore:.*datetime\.datetime\.utcnow\(\) is deprecated and scheduled for removal in a future version\.:DeprecationWarning