Merge pull request #188581 from onny/cacheops
This commit is contained in:
commit
3595998d5c
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user