Skip to content

Commit

Permalink
Rename variables for consistency
Browse files Browse the repository at this point in the history
With the R checks.
  • Loading branch information
StevenMaude committed May 16, 2024
1 parent 17374d8 commit 927aae5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/dev_container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ r_packages_extra_to_local_install=$(comm -13 <(echo "$r_docker_packages") <(echo
python_image_version='v2'
opensafely pull "python:$python_image_version"

docker_python_packages=$(docker run "ghcr.io/opensafely-core/python:$python_image_version" python -m pip freeze)
local_python_packages=$(/opt/venv/bin/python3.10 -m pip freeze)
diff <(echo "$local_python_packages") <(echo "$docker_python_packages")
python_docker_packages=$(docker run "ghcr.io/opensafely-core/python:$python_image_version" python -m pip freeze)
python_installed_packages=$(/opt/venv/bin/python3.10 -m pip freeze)
diff <(echo "$python_docker_packages") <(echo "$python_installed_packages")

# Check the RStudio server is running.
curl -L 'http://localhost:8787' | grep 'RStudio'
Expand Down

0 comments on commit 927aae5

Please sign in to comment.