Skip to content

Commit

Permalink
Fix (test): ignore hypothesis health check
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Sep 12, 2023
1 parent 2b203c9 commit e4750ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Copyright (C) 2023, Advanced Micro Devices, Inc. All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause

import hypothesis
import torch

SEED = 123456
DIFFERING_EXECUTOR_ENUM = 10 # Disabled since it fails with normal test setup

torch.random.manual_seed(SEED)
hypothesis.settings(suppress_health_check=hypothesis.HealthCheck(DIFFERING_EXECUTOR_ENUM))

0 comments on commit e4750ea

Please sign in to comment.