Commit 2ef43ed2 authored by Yunus Sevinchan's avatar Yunus Sevinchan
Browse files

Merge branch 'update-some-run-and-eval-configs' into 'master'

Change default `num_steps` to 100 and tweak some config sets

Closes #258

See merge request !302
parents 25a70a3b 56d099d2
Loading
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -393,8 +393,10 @@ test:cli:
    # Now, enter the virtual environment and test the CLI
    - $ENTER_UTOPIA_ENV

    # Adjust the user configuration to store to a local directory
    # Adjust the user configuration to store to a local directory and use a
    # different default for the number of simulation steps
    - utopia config user --set paths.out_dir=$CI_PROJECT_DIR/utopia_output --get
    - utopia config user --set paramter_space.num_steps=3 --get

    # Show which models are available
    - utopia models ls --long
+2 −2
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ does not already cover your question.

We prefer to discuss even minor questions users might have in public, so we
encourage you to
[raise an issue](https://gitlab.com/utopia-project/utopia/issues/new?issue)
[raise an issue](https://gitlab.com/utopia-project/utopia/-/issues)
in GitLab and use the `question` description template.

### Code Development
@@ -50,5 +50,5 @@ a change.
After discussing the issue and implementing the feature, open a merge request.
Again, we encourage you to use one of the description templates. Provide
information on how your code changes and additions solve the problem or
implement the feature. Make sure that your MR fulfills the criteria for
implement the feature. Make sure that your MR fulfils the criteria for
being merged.
+1 −1
Original line number Diff line number Diff line
@@ -577,7 +577,7 @@ The following depencies are _recommended_ to be installed, but are not strictly
[models_template]: https://gitlab.com/utopia-project/models_template

[Utopia-issues]: https://gitlab.com/utopia-project/utopia/issues
[Utopia-new-issue]: https://gitlab.com/utopia-project/utopia/issues/new?issue
[Utopia-new-issue]: https://gitlab.com/utopia-project/utopia/issues/new

[Utopia-docs]: https://docs.utopia-project.org/html/index.html
[Utopia-tutorial]: https://docs.utopia-project.org/html/getting_started/tutorial.html
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ Lines starting with the 📚 symbol also denote further reading material.

.. note::

    Please `inform us <https://gitlab.com/utopia-project/utopia/-/issues/new>`_ about any outdated information or broken links on this page!
    Please `inform us <https://gitlab.com/utopia-project/utopia/-/issues>`_ about any outdated information or broken links on this page!

.. contents::
    :local:
+1 −1
Original line number Diff line number Diff line
@@ -122,7 +122,7 @@ html_theme = "sphinx_book_theme"
html_theme_options = {
    "repository_url": "https://gitlab.com/utopia-project/utopia",
    "use_repository_button": True,
    "use_issues_button": True,
    "use_issues_button": False,     # NOTE Not working with GitLab repos yet
    "use_edit_page_button": False,  # NOTE Not working with GitLab repos yet
    "use_download_button": True,
    "use_fullscreen_button": False,
Loading