forked from espressif/esp-idf
fix(ci): Change expected message in tests after dependency checker update
This should fix the tests after 5f798eb78b
has changed the error message.
This commit is contained in:
@@ -114,6 +114,8 @@
|
|||||||
|
|
||||||
- "tools/split_paths_by_spaces.py"
|
- "tools/split_paths_by_spaces.py"
|
||||||
|
|
||||||
|
- "tools/check_python_dependencies.py"
|
||||||
|
|
||||||
.patterns-docker: &patterns-docker
|
.patterns-docker: &patterns-docker
|
||||||
- "tools/docker/**/*"
|
- "tools/docker/**/*"
|
||||||
|
|
||||||
|
@@ -7,7 +7,6 @@ tools/ci/check_copyright_config.yaml
|
|||||||
tools/ci/get_all_test_results.py
|
tools/ci/get_all_test_results.py
|
||||||
tools/gdb_panic_server.py
|
tools/gdb_panic_server.py
|
||||||
tools/check_term.py
|
tools/check_term.py
|
||||||
tools/check_python_dependencies.py
|
|
||||||
tools/python_version_checker.py
|
tools/python_version_checker.py
|
||||||
tools/generate_debug_prefix_map.py
|
tools/generate_debug_prefix_map.py
|
||||||
tools/ci/astyle-rules.yml
|
tools/ci/astyle-rules.yml
|
||||||
|
@@ -29,7 +29,7 @@ PYTHON_DIR = os.path.join(TOOLS_DIR, 'python_env')
|
|||||||
PYTHON_DIR_BACKUP = tempfile.mkdtemp()
|
PYTHON_DIR_BACKUP = tempfile.mkdtemp()
|
||||||
PYTHON_BINARY = os.path.join('Scripts', 'python.exe') if sys.platform == 'win32' else os.path.join('bin', 'python')
|
PYTHON_BINARY = os.path.join('Scripts', 'python.exe') if sys.platform == 'win32' else os.path.join('bin', 'python')
|
||||||
REQ_SATISFIED = 'Python requirements are satisfied'
|
REQ_SATISFIED = 'Python requirements are satisfied'
|
||||||
REQ_MISSING = "{}' - was not found and is required by the application"
|
REQ_MISSING = 'Package was not found and is required by the application: {}'
|
||||||
REQ_CORE = '- {}'.format(os.path.join(IDF_PATH, 'tools', 'requirements', 'requirements.core.txt'))
|
REQ_CORE = '- {}'.format(os.path.join(IDF_PATH, 'tools', 'requirements', 'requirements.core.txt'))
|
||||||
REQ_GDBGUI = '- {}'.format(os.path.join(IDF_PATH, 'tools', 'requirements', 'requirements.gdbgui.txt'))
|
REQ_GDBGUI = '- {}'.format(os.path.join(IDF_PATH, 'tools', 'requirements', 'requirements.gdbgui.txt'))
|
||||||
CONSTR = 'Constraint file: {}'.format(os.path.join(TOOLS_DIR, 'espidf.constraints'))
|
CONSTR = 'Constraint file: {}'.format(os.path.join(TOOLS_DIR, 'espidf.constraints'))
|
||||||
|
Reference in New Issue
Block a user