diff --git a/.gitmodules b/.gitmodules index e6279b57..7227b4a4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,9 @@ [submodule "utils"] path = utils url = git@github.com:forecastingresearch/utils.git +[submodule "experiments/stability-analysis"] + path = experiments/stability-analysis + url = https://github.com/forecastingresearch/forecastbench-stability-analysis.git +[submodule "experiments/ranking-simulation"] + path = experiments/ranking-simulation + url = https://github.com/forecastingresearch/forecastbench-ranking-simulation.git diff --git a/experiments/ranking-simulation b/experiments/ranking-simulation new file mode 160000 index 00000000..bb7dd49b --- /dev/null +++ b/experiments/ranking-simulation @@ -0,0 +1 @@ +Subproject commit bb7dd49b3afcc49ceca95a30a8036bdbc9e8e5b8 diff --git a/experiments/stability-analysis b/experiments/stability-analysis new file mode 160000 index 00000000..de9143b7 --- /dev/null +++ b/experiments/stability-analysis @@ -0,0 +1 @@ +Subproject commit de9143b7c5c09c7e22e1fe3bb930ed4091e1f1c5 diff --git a/pyproject.toml b/pyproject.toml index 90ab52eb..3c0391ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,5 +4,7 @@ force-exclude = ''' ( ^/.venv.* | ^/utils/ + | ^/experiments/stability-analysis/ + | ^/experiments/ranking-simulation/ ) ''' diff --git a/setup.cfg b/setup.cfg index 9ebf459f..32b9f128 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,8 @@ [isort] skip_glob = .venv* -skip = utils +skip = utils, + stability-analysis, + ranking-simulation profile = black [flake8] @@ -8,10 +10,12 @@ profile = black exclude = .venv*, utils, + stability-analysis, + ranking-simulation, max-line-length = 100 extend-select = B950 extend-ignore = E203,E501,E701 [pydocstyle] match = .*\.py -match-dir = ^(?!(\.venv|utils)).*$ \ No newline at end of file +match-dir = ^(?!(\.venv|utils|stability-analysis|ranking-simulation)).*$ \ No newline at end of file