We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bbdaab commit bb7a59fCopy full SHA for bb7a59f
1 file changed
.github/workflows/ci.yml
@@ -154,7 +154,7 @@ jobs:
154
return "$gdb_status"
155
}
156
157
- run_gdb .cache/gdb-json-install-smoke.log .venv/bin/python -c 'import shutil, tempfile; import ladybug as lb; tmp = tempfile.mkdtemp(); db = lb.Database(tmp); conn = lb.Connection(db); conn.execute("INSTALL json; LOAD json;"); shutil.rmtree(tmp)'
+ run_gdb .cache/gdb-json-install-smoke.log .venv/bin/python -c 'import shutil, tempfile; from pathlib import Path; import ladybug as lb; tmp = Path(tempfile.mkdtemp()); db = lb.Database(tmp / "db.lbdb"); conn = lb.Connection(db); conn.execute("INSTALL json; LOAD json;"); shutil.rmtree(tmp)'
158
159
run_gdb .cache/gdb-capi-pytest.log .venv/bin/python -m pytest -vv ./test
160
0 commit comments