python311Packages.watchfiles: disable failing test

and clean up unused arguments.
This commit is contained in:
Martin Weinelt 2023-09-16 12:56:04 +02:00
parent b473fdf736
commit 73e2ff80e4

View File

@ -6,13 +6,11 @@
, fetchFromGitHub , fetchFromGitHub
, rustPlatform , rustPlatform
, rustc , rustc
, setuptools-rust
, pythonOlder , pythonOlder
, dirty-equals , dirty-equals
, pytest-mock , pytest-mock
, pytest-timeout , pytest-timeout
, pytestCheckHook , pytestCheckHook
, python
, CoreServices , CoreServices
, libiconv , libiconv
}: }:
@ -73,6 +71,11 @@ buildPythonPackage rec {
rm -rf watchfiles rm -rf watchfiles
''; '';
disabledTests = [
# BaseExceptionGroup: unhandled errors in a TaskGroup (1 sub-exception)
"test_awatch_interrupt_raise"
];
pythonImportsCheck = [ pythonImportsCheck = [
"watchfiles" "watchfiles"
]; ];