You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2025. It is now read-only.
We're currently using a hackish mock approach to estimating coverage for our Numba implementations; however, this is cumbersome to use and extend. Let's take (another) look at the use of numba.config.DISABLE_JIT for these purposes.
A change like that would need to be followed by some pytest runs with coverage enabled, and the results would need to indicate that coverage was obtained for the Python code produced for Numba by Aesara.
We're currently using a hackish
mockapproach to estimating coverage for our Numba implementations; however, this is cumbersome to use and extend. Let's take (another) look at the use ofnumba.config.DISABLE_JITfor these purposes.For instance, instead of
eval_python_onlyataesara/tests/link/numba/test_basic.py
Line 241 in 404e2d4
we would—ideally—have something the following:
A change like that would need to be followed by some
pytestruns with coverage enabled, and the results would need to indicate that coverage was obtained for the Python code produced for Numba by Aesara.