File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 681
681
"offset" : 5.0
682
682
},
683
683
"name" : null ,
684
+ "interpolate" : true ,
684
685
"polarization" : " Hx"
685
686
},
686
687
{
704
705
"offset" : 5.0
705
706
},
706
707
"name" : null ,
707
- "polarization " : " Ex " ,
708
- "interpolate " : true
708
+ "interpolate " : true ,
709
+ "polarization " : " Ex "
709
710
},
710
711
{
711
712
"type" : " ModeSource" ,
891
892
"offset" : 5.0
892
893
},
893
894
"name" : null ,
895
+ "interpolate" : true ,
894
896
"current_dataset" : {
895
897
"type" : " FieldDataset" ,
896
898
"Ex" : " ScalarFieldDataArray" ,
Original file line number Diff line number Diff line change 3
3
import pytest
4
4
import responses
5
5
from _pytest import monkeypatch
6
+ import os
6
7
7
8
import tidy3d as td
8
9
import tidy3d .web as web
20
21
21
22
from tidy3d .__main__ import main
22
23
24
+ from ..utils import TMP_DIR
25
+
23
26
# variables used below
24
- FNAME_TMP = "tests/tmp/web_test_tmp.json"
27
+ FNAME_TMP = os .path .join (TMP_DIR , "web_test_tmp.json" )
28
+
25
29
TASK_NAME = "task_name_test"
26
30
TASK_ID = "1234"
27
31
CREATED_AT = "2022-01-01T00:00:00.000Z"
28
32
PROJECT_NAME = "default"
29
33
FLEX_UNIT = 1.0
30
34
EST_FLEX_UNIT = 11.11
31
35
36
+ # make the TMP directory if it doesnt exist
37
+ if not os .path .exists (TMP_DIR ):
38
+ os .mkdir (TMP_DIR )
39
+
32
40
33
41
def make_sim ():
34
42
"""Makes a simulation."""
You can’t perform that action at this time.
0 commit comments