Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Faster CircleCI tests + better docker image docs #211

Merged
merged 4 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,15 @@ jobs:
echo "CIRCLE_REPOSITORY_URL: ${CIRCLE_REPOSITORY_URL}"
echo $CIRCLE_JOB > circlejob.txt

- run:
name: 🔎 Unit tests
command: |
julia test/ci_prepare.jl

- run:
name: ⚙️ Integration tests
command: |
julia --project -e 'import Pkg; Pkg.instantiate(); Pkg.update();'
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

N.B. we now install the Julia deps in the repo environment as we now assume that the Julia test runner uses julia --project internally following plotly/dash#2573

python -m venv venv
. venv/bin/activate
pip install --upgrade pip wheel
git clone --depth 1 https://github.com/plotly/dash.git -b dev dash-main
cd dash-main && pip install -e .[ci,dev,testing] --progress-bar off && cd ..
export PATH=$PATH:/home/circleci/.local/bin/
pytest --headless --nopercyfinalize --junitxml=test-reports/dashjl.xml --percy-assets=test/assets/ test/integration/
- store_artifacts:
path: test-reports
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ venv
*.pyc
tmp
gen_resources/build
dash-main
82 changes: 73 additions & 9 deletions build/README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,84 @@
# plotly/julia:ci
# Docker image for running integration tests

#### This Dockerfile is currently used to support integration and unit tests for [Dash.jl](https://github.com/plotly/Dash.jl).
As CircleCI does not have Julia [Orbs](https://circleci.com/orbs/) yet, we rely
on a custom docker image to have access to Python, headless Chrome and Julia
in the same container.

## Usage
Since <https://github.com/plotly/Dash.jl/pull/207>, we tag the build images
as [`etpinard/dashjl-tests`](https://hub.docker.com/r/etpinard/dashjl-tests). We
previously used the [`plotly/julia:ci`](https://hub.docker.com/r/plotly/julia/tags) image.

This image is pulled from within Dash.jl's [config.yml](https://github.com/plotly/Dash.jl/blob/dev/.circleci/config.yml):
## When should we update the docker image?

The integration tests rely on the Python version of [dash](https://github.com/plotly/dash)
and its [testing framework](https://github.com/plotly/dash/tree/dev/dash/testing).

So, we should use the latest CircleCI python + browsers image latest Python version
that is included in the [dash CircleCI config](https://github.com/plotly/dash/blob/dev/.circleci/config.yml)
as our base image.

We should also update the Julia version from time to time. It might be nice to
run the integration tests on multiple Julia versions eventually.

## How to update the docker image?

Ask for push rights on docker hub first, then

```sh
cd Dash.jl/build
docker build -t etpinard:dashjl-tests:<x.y.z> .
docker push etpinard:dashjl-test:<x.y.z>
```

where `<x.y.z>` is the semver tag for the new image.

## CircleCI usage

This image is pulled from within Dash.jl's [CircleCI config.yml](../.circleci/config.yml):

```yaml
docker:
- image: plotly/julia:ci
- image: etpinard/dashjl-tests:<x.y.z>
```

## Publication details
where `<x.y.z>` is the latest tag listed on <https://hub.docker.com/r/etpinard/dashjl-tests/tags>.

## Local usage

````sh
# grab a copy of the python (main) dash repo
cd Dash.jl
git clone --depth 1 https://github.com/plotly/dash.git -b dev dash-main

# start `dashjl-tests`
docker run -t -d --name dashjl-tests -v .:/home/circleci/project etpinard/dashjl-tests:<x.y.z>

[plotly/julia:ci](https://hub.docker.com/r/plotly/julia/tags)
# ssh into it as root (some python deps need that unfortunately)
docker exec -u 0 -it dashjl-tests bash

## Limitations
# [on 1st session] install pip deps
cd /home/circleci/project/dash-main
pip install --upgrade pip wheel
pip install -e .[ci,dev,testing] --progress-bar off

The current revision of this Dockerfile fixes the Julia version at a given release, so only manual updating is possible. The image is based on `circleci/python:3.7-stretch-node-browsers` rather than the [docker-library](https://github.com/docker-library/julia) or [julia-latest](https://hub.docker.com/_/julia?tab=tags) images.
# [on 1st session] install chrome
cd /home/circleci
wget https://raw.githubusercontent.com/CircleCI-Public/browser-tools-orb/main/src/scripts/install-chrome.sh
chmod +x install-chrome.sh
ORB_PARAM_CHANNEL="stable" ORB_PARAM_CHROME_VERSION="latest" ./install-chrome.sh

# [on 1st session] install chromedriver
cd /home/circleci
wget https://raw.githubusercontent.com/CircleCI-Public/browser-tools-orb/main/src/scripts/install-chromedriver.sh
chmod +x ./install-chromedriver.sh
ORB_PARAM_DRIVER_INSTALL_DIR=/usr/local/bin/ ./install-chromedriver.sh

# [on 1st session] instantiate julia deps
cd /home/circleci/project/
julia --project -e 'import Pkg; Pkg.instantiate()'

# update julia deps then run integration tests
cd /home/circleci/project/
julia --project -e 'import Pkg; Pkg.update()'
pytest --headless --nopercyfinalize --percy-assets=test/assets/ test/integration/
```
11 changes: 0 additions & 11 deletions test/ci_prepare.jl

This file was deleted.