Skip to content

How to fix CI

Yuchao Yan edited this page Jul 22, 2022 · 8 revisions

Overview

This doc shows some common problems and resolution in CI.

Problems and resolution

Analyze dependencies

image When dependencies of setup.py is updated and it is inconsistent with frozen requirement, CI will report the up error. The resolution is to update shared_requirements.txt. CI will shows the package name and your new dependency, so just need to add new line at the bottom of the file like: #override {{package_name}} {{new_dependency}}(if the line already exists, just need to update the new_dependency).