-
Florian Schröder authored
All instances of 'overcooked_simulator' have been replaced with 'cooperative_cuisine'. This includes changes in file paths, imports, and script names. The necessary adjustments to reflect this rename have also been made in the documentation, setup files, test scripts, and CI/CD configuration.
Florian Schröder authoredAll instances of 'overcooked_simulator' have been replaced with 'cooperative_cuisine'. This includes changes in file paths, imports, and script names. The necessary adjustments to reflect this rename have also been made in the documentation, setup files, test scripts, and CI/CD configuration.
.gitlab-ci.yml 762 B
pytest:
stage: test
script:
- apt-get update -qy
- apt-get install -y python3-dev python3-pip graphviz graphviz-dev
- pip install pytest
- pip install .
- pytest --junitxml=report.xml
artifacts:
when: always
reports:
junit: report.xml
pages:
script:
- apt-get update -qy
- apt-get install -y python3-dev python3-pip
- pip install pdoc
- pip install ".[rl]"
- pdoc --output-dir public cooperative_cuisine !cooperative_cuisine.reinforcement_learning --logo https://gitlab.ub.uni-bielefeld.de/uploads/-/system/project/avatar/6780/Cooking-Vector-Illustration-Icon-Graphics-4267218-1-580x435.jpg --docformat google
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == "main"