python310Packages.django-cacheops: Enable more tests

This commit is contained in:
Jonas Heinrich 2022-08-28 10:59:34 +02:00
parent e500665539
commit f289dfb450

View File

@ -5,6 +5,8 @@
, funcy
, redis
, six
, pytest-django
, pytestCheckHook
}:
buildPythonPackage rec {
@ -23,14 +25,33 @@ buildPythonPackage rec {
six
];
# tests need a redis server
# pythonImportsCheck not possible since DJANGO_SETTINGS_MODULE needs to be set
doCheck = false;
checkInputs = [
pytestCheckHook
pytest-django
];
disabledTests = [
# Tests require networking
"test_cached_as"
"test_invalidation_signal"
"test_queryset"
"test_queryset_empty"
"test_lock"
"test_context_manager"
"test_decorator"
"test_in_transaction"
"test_nested"
"test_unhashable_args"
"test_db_agnostic_by_default"
"test_db_agnostic_disabled"
];
DJANGO_SETTINGS_MODULE = "tests.settings";
meta = with lib; {
description = "A slick ORM cache with automatic granular event-driven invalidation for Django";
homepage = "https://github.com/Suor/django-cacheops";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ onny ];
};
}