Merge pull request #273341 from wegank/memtree-tests

memtree: fix imports check
This commit is contained in:
Weijia Wang 2023-12-18 00:06:52 +01:00 committed by GitHub
commit ec5e0fbaf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,6 @@ python3Packages.buildPythonApplication {
nativeBuildInputs = with python3Packages; [
poetry-core
pytestCheckHook
];
propagatedBuildInputs = with python3Packages; [
@ -27,11 +26,11 @@ python3Packages.buildPythonApplication {
nativeCheckInputs = with python3Packages; [
hypothesis
pytest
pytestCheckHook
];
pytestFlagsArray = [ "-v" ];
pythonImportChecks = [ "memtree" ];
pythonImportsCheck = [ "memtree" ];
passthru.updateScript = nix-update-script {
extraArgs = [ "--version=branch" ];