Skip to content

Commit

Permalink
Disable faulthandler during inference tests
Browse files Browse the repository at this point in the history
  • Loading branch information
David Rubinstein committed Oct 2, 2023
1 parent 1db7c15 commit 7827c1c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import faulthandler
import os
import pathlib
import tempfile
Expand All @@ -36,6 +37,8 @@

RESOURCES_PATH = pathlib.Path(__file__).parent / "resources"

faulthandler.disable()


class TestPredict(unittest.TestCase):
def test_predict(self) -> None:
Expand Down

0 comments on commit 7827c1c

Please sign in to comment.