Unverified Commit 98d6d2a7 authored by Wolfgang Walther's avatar Wolfgang Walther
Browse files

python3Packages.asyncpg: enable tests again

Those were accidentally disabled a while ago, when postgresql.doCheck
was set to false unconditionally. Instead the checks are now done as
part of the installCheck phase.
parent 6da63280
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ buildPythonPackage rec {
  };

  # sandboxing issues on aarch64-darwin, see https://github.com/NixOS/nixpkgs/issues/198495
  doCheck = postgresql.doCheck;
  doCheck = postgresql.doInstallCheck;

  # required for compatibility with Python versions older than 3.11
  # see https://github.com/MagicStack/asyncpg/blob/v0.29.0/asyncpg/_asyncio_compat.py#L13