Skip to content
Snippets Groups Projects
Commit c25b0a55 authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Exclude jitted functions from coverage

parent 062bfe5d
No related branches found
No related tags found
No related merge requests found
Pipeline #8458 passed
......@@ -22,7 +22,7 @@ CHANNEL_BITS_TEMPLATE = np.zeros(31, dtype=bool)
nb.int32(nb.int32),
nb.int32(nb.int64)
])
def get_rate(value):
def get_rate(value): #pragma: no cover
"""Return the rate in Hz from the short int value"""
if value == 0:
return 0
......@@ -34,7 +34,7 @@ def get_rate(value):
"(), (n) -> (n)",
target="parallel",
nopython=True)
def unpack_bits(value, bits_template, out):
def unpack_bits(value, bits_template, out): #pragma: no cover
"""Return a boolean array for a value's bit representation.
This function also accepts arrays as input, the output shape will be
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment