Commit 6fb0f96f authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages.psycopg: Disable timing sensitive tests

Our build cluster is often busy and cannot really deal with
parent 7bc84193
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -183,10 +183,6 @@ buildPythonPackage rec {
    # don't depend on mypy for tests
    "test_version"
    "test_package_version"
  ] ++ lib.optionals (stdenv.isDarwin) [
    # racy test
    "test_sched"
    "test_sched_error"
  ];

  disabledTestPaths = [
@@ -199,7 +195,8 @@ buildPythonPackage rec {
  ];

  pytestFlagsArray = [
    "-o cache_dir=$TMPDIR"
    "-o" "cache_dir=$TMPDIR"
    "-m" "'not timing'"
  ];

  postCheck = ''