Skip to content

Commit bdee52e

Browse files
committed
create tests/tmp in webapi tests if missing
1 parent ca23dfe commit bdee52e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

tests/sims/simulation_2_3_0.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -681,6 +681,7 @@
681681
"offset": 5.0
682682
},
683683
"name": null,
684+
"interpolate": true,
684685
"polarization": "Hx"
685686
},
686687
{
@@ -704,8 +705,8 @@
704705
"offset": 5.0
705706
},
706707
"name": null,
707-
"polarization": "Ex",
708-
"interpolate": true
708+
"interpolate": true,
709+
"polarization": "Ex"
709710
},
710711
{
711712
"type": "ModeSource",
@@ -891,6 +892,7 @@
891892
"offset": 5.0
892893
},
893894
"name": null,
895+
"interpolate": true,
894896
"current_dataset": {
895897
"type": "FieldDataset",
896898
"Ex": "ScalarFieldDataArray",

tests/test_web/test_webapi.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import pytest
44
import responses
55
from _pytest import monkeypatch
6+
import os
67

78
import tidy3d as td
89
import tidy3d.web as web
@@ -20,15 +21,22 @@
2021

2122
from tidy3d.__main__ import main
2223

24+
from ..utils import TMP_DIR
25+
2326
# 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+
2529
TASK_NAME = "task_name_test"
2630
TASK_ID = "1234"
2731
CREATED_AT = "2022-01-01T00:00:00.000Z"
2832
PROJECT_NAME = "default"
2933
FLEX_UNIT = 1.0
3034
EST_FLEX_UNIT = 11.11
3135

36+
# make the TMP directory if it doesnt exist
37+
if not os.path.exists(TMP_DIR):
38+
os.mkdir(TMP_DIR)
39+
3240

3341
def make_sim():
3442
"""Makes a simulation."""

0 commit comments

Comments
 (0)