Unverified Commit f0d74452 authored by Raghav Sood's avatar Raghav Sood Committed by GitHub
Browse files

Merge pull request #304240 from geekodour/master

goose: update test skip list with newer tests
parents 4214b0d5 43487d0f
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ buildGoModule rec {
  proxyVendor = true;
  vendorHash = "sha256-aoBxReKRk7dkFR/fJ5uHDZrJRGutLTU2BhDWCTBN2BA=";

  # end-to-end tests require a docker daemon
  # skipping: end-to-end tests require a docker daemon
  postPatch = ''
    rm -r tests/e2e
    rm -r tests/gomigrations
@@ -32,8 +32,10 @@ buildGoModule rec {
  ];

  checkFlags = [
    # these also require a docker daemon
    "-skip=TestClickUpDown|TestClickHouseFirstThree"
    # NOTE:
    # - skipping: these also require a docker daemon
    # - these are for go tests that live outside of the /tests directory
    "-skip=TestClickUpDown|TestClickHouseFirstThree|TestLockModeAdvisorySession|TestDialectStore|TestGoMigrationStats|TestPostgresSessionLocker"
  ];

  doCheck = !stdenv.isDarwin;