A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://elyra.readthedocs.io/en/latest/developer_guide/development-workflow.html below:

Website Navigation


Development Workflow — Elyra 3.16.0.dev0 documentation

Development Workflow

This section describes the steps necessary to build Elyra in a development environment.

Requirements Setting up your development environment Setting up your Elyra Github repository Building

Elyra is divided in two parts, a collection of Jupyter Notebook backend extensions, and their respective JupyterLab UI extensions. Our JupyterLab extensions are located in our packages directory.

Build & Installation

Elyra uses make to automate some of the development workflow tasks.

Issuing a make command with no task specified will provide a list of the currently supported tasks.

$ make

clean                          Make a clean source tree and uninstall extensions
container-images               Build all container images
docs                           Build docs
install-all                    Build and install, including examples
install-examples               Install example pipeline components
install-server                 Build and install backend
install                        Build and install
lint                           Run linters
publish-container-images       Publish all container images
release                        Build wheel file for release
test                           Run all tests (backend, frontend and cypress integration tests)
watch                          Watch packages. For use alongside jupyter lab --watch

You can build and install all Elyra packages with:

You can check that the notebook server extension was successfully installed with:

jupyter serverextension list

You can check that the JupyterLab extension was successfully installed with:

jupyter labextension list

NOTE: When switching between Elyra major versions, it is recommended to clean your JupyterLab environment before a build. The clean-jupyterlab removes your JupyterLab packages and completely deletes your Jupyter workspace. Make sure to backup any important data in your environment before running the script. To clean your environment and install the latest JupyterLab: etc/scripts/clean-jupyterlab.sh To specify a JupyterLab version x.y.z to be installed: etc/scripts/clean-jupyterlab.sh --version x.y.z

Parallel Development with @elyra/pipeline-editor

You can install Elyra using a local build of @elyra/pipeline-editor with:

Back-end Development

After making code changes to the back-end, you can re-build Elyra’s Python package with:

This command builds and installs the updated Python package independently, skipping any UI component build.

Restart JupyterLab to pick up the new code changes.

Front-end Incremental Development

Elyra supports incremental development using --watch. This allows you to make code changes to front-end packages and see them without running make install again.

After installation run the following to watch for code changes and rebuild automatically:

Then in a separate terminal, using the same Python environment, start JupyterLab in watch mode:

When in watch mode JupyterLab will watch for changes in the build of each package and rebuild. To see your changes just refresh JupyterLab in your browser.

NOTE: JupyterLab watch mode will not pick up changes in package dependencies like services. So when making changes to services you will need to stop and restart jupyter lab --watch and not just refresh your browser.

Building the Elyra Container Image

Elyra’s container image can be built in two ways (production and development):

Development:

By default, the command above will build a container image (development) with the changes that exist in your local branch.

Production:
From main branch:

make elyra-image TAG=3.7.0

or after checking out a git tag e.g. git checkout tags/v3.7.0

In order to build from a particular release (production), you can pass a TAG parameter to the make command or you can checkout the respective tagged release and omit the TAG parameter.

Official container images are published on Docker Hub and quay.io.

Developing Elyra against the Jupyterlab source repo

Sometimes it is useful to develop Elyra against a local build of Jupyterlab. To use a local build of Jupyterlab use the following steps in the same python environment.

  1. Uninstall any pip installations of Jupyterlab. You can use etc/scripts/clean-jupyterlab.sh --version dev as mentioned above with --version dev to not reinstall Jupyterlab at the end of the script.

  2. Build your local repo of Jupyterlab, step-by-step instructions can be found in the Jupyterlab documentation. Uninstalling in the previous step will also wipe any previous installations of a local build.

  3. cd to the builder/ directory in your Jupyterlab repo and run yarn link. The Elyra Makefile will use this yarn link in step 6.

  4. In your Elyra repo, uncomment the following line in tsconfig.base.json to tell Typescript to use the local Jupyterlab packages when building:

    "paths": { "@jupyterlab/*": ["../jupyterlab/packages/*"] },

  5. Comment out jupyterlab and jupyterlab-lsp in the install_requires section of setup.py in your Elyra repo. This will prevent Jupyterlab from being pip installed during the Elyra build. Note: jupyterlab-lsp also pip installs Jupyterlab when installed

  6. Run make install-dev to install Elyra using the linked @jupyterlab/builder from step 3.

  7. You can now start Jupyterlab by running jupyter lab --dev-mode --extensions-in-dev-mode, this will automatically watch for changes in the Jupyterlab repo. To also watch for changes in Elyra run make watch in a separate terminal in the same Python environment.

When you want to switch back to developing Elyra against a Jupyterlab release, you just have to undo the comments in steps 4 and 5 and rebuild with make clean install

Analyzing automated test failures

The Elyra GitHub repository is configured to run automated tests whenever a pull request is opened. These tests include static code quality analysis and UI, server, and integration tests.

The test results can be accessed from the pull request or the actions tab. If the test log does not include enough details to diagnose failures, download and review test artifacts that might have been generated.

Accessing test artifacts
  1. Open the Elyra repository actions panel (https://github.com/elyra-ai/elyra/actions).

  2. Locate the failing workflow.

  3. Open the workflow.

  4. Click the ‘home’ (summary) button.

  5. Locate the ‘Artifacts’ section. If present, it should contain a download link.

  6. Download the archive, extract it, and review the artifacts.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4