File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ install:
50
50
{$root = "C:\Miniconda-x64"}
51
51
$env:path="$root;$root\Scripts;$root\Library\bin;$($env:path)"
52
52
53
- - cmd : setx NUMBA_DISABLE_JIT "1"
54
53
- cmd : conda config --set show_channel_urls true
55
54
- cmd : conda config --set always_yes yes --set changeps1 no
56
55
- cmd : conda update -n base conda
Original file line number Diff line number Diff line change 9
9
"""
10
10
import os
11
11
import pytest
12
+ import platform
12
13
import numpy as np
13
14
import sympy as sy
14
15
from numba .errors import TypingError
15
16
from exa .util .nbvars import numbafy
16
17
17
18
18
- NUMBA_DISABLE_JIT = os .environ .get ("NUMBA_DISABLE_JIT" , 0 ) == 1
19
+ NUMBA_DISABLE_JIT = os .environ .get ("NUMBA_DISABLE_JIT" , 0 ) == 1 or platform . system () == "Windows"
19
20
20
21
21
22
@pytest .fixture
You can’t perform that action at this time.
0 commit comments