Skip to content

Commit

Permalink
Make scipy optional in shutdown test
Browse files Browse the repository at this point in the history
  • Loading branch information
bmerry committed Aug 17, 2023
1 parent b4b5db3 commit 5facfea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/shutdown.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import logging

import numpy as np
import scipy

import spead2
import spead2._spead2
Expand Down Expand Up @@ -64,8 +63,9 @@ def test_running_stream():
def test_running_chunk_stream_group():
try:
import numba
import scipy
except ImportError:
return # Skip the test if numba is not available
return # Skip the test if numba/scipy is not available
from numba import types

from spead2.numba import intp_to_voidptr
Expand Down

0 comments on commit 5facfea

Please sign in to comment.