Skip to content

Commit

Permalink
Merge pull request #10065 from gem/webui-start
Browse files Browse the repository at this point in the history
Call `oq webui start` in the demos
  • Loading branch information
micheles authored Oct 17, 2024
2 parents 5e2cfa3 + 491a840 commit 8717d4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions bin/run-demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ fi

oq info venv
oq info cfg
oq webui start & # test extract_dependencies

# create .tmp.ini files with oqparam.to_ini()
python -m openquake.calculators.checkers "$1"
Expand Down
2 changes: 1 addition & 1 deletion openquake/calculators/checkers.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def check_ini(path, hc):
with open(tmp_ini, 'w') as f:
f.write(ini)
dic2 = readinput.get_params(tmp_ini)
missing = set(dic) - set(dic2) - {'intensity_measure_types'}
missing = set(dic) - set(dic2) - {'intensity_measure_types', 'export_dir'}
if missing:
breakpoint()

Expand Down

0 comments on commit 8717d4b

Please sign in to comment.