Skip to content

Commit

Permalink
install only chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispyles committed Sep 1, 2024
1 parent 54dc46a commit 08846d8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion otter/generate/templates/python/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f {{ autograder_dir }}/source/environment.yml
mamba run -n {{ otter_env_name }} playwright install
mamba run -n {{ otter_env_name }} playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion otter/generate/templates/r/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export TAR="/bin/tar"
# install dependencies with mamba{% if channel_priority_strict %}
mamba config --set channel_priority strict{% endif %}
mamba env create -f {{ autograder_dir }}/source/environment.yml
mamba run -n {{ otter_env_name }} playwright install{% if has_r_requirements %}
mamba run -n {{ otter_env_name }} playwright install chromium{% if has_r_requirements %}
mamba run -n {{ otter_env_name }} Rscript {{ autograder_dir }}/source/requirements.r{% endif %}

# set mamba shell
Expand Down
2 changes: 1 addition & 1 deletion test/test_assign/files/example-autograder-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion test/test_assign/files/gs-autograder-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion test/test_assign/files/rmd-autograder-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export TAR="/bin/tar"
# install dependencies with mamba
mamba config --set channel_priority strict
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion test/test_generate/files/autograder-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion test/test_generate/files/autograder-custom-env/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
2 changes: 1 addition & 1 deletion test/test_generate/files/autograder-r-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium
mamba run -n otter-env Rscript /autograder/source/requirements.r

# set mamba shell
Expand Down
2 changes: 1 addition & 1 deletion test/test_generate/files/autograder-token-correct/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export TAR="/bin/tar"

# install dependencies with mamba
mamba env create -f /autograder/source/environment.yml
mamba run -n otter-env playwright install
mamba run -n otter-env playwright install chromium

# set mamba shell
mamba init --all

0 comments on commit 08846d8

Please sign in to comment.