From 3245eeb6bf116205e78e1c7bfad484d0d37aa30c Mon Sep 17 00:00:00 2001 From: Francesc Rocher Date: Sat, 9 Mar 2024 19:24:55 +0100 Subject: [PATCH] Missing dependencies in testsuite documentation. (#1620) * Missing dependencies in testsuite documentation. Required package 'pexpect' is not installed as a dependency of 'e3-testsuite', so is has to be explicitly installed. Neither 'e3-testsuite' nor 'e3-core' depend on it: $ pip show e3-testsuite e3-core Name: e3-testsuite Version: 26.0 Summary: E3 testsuite Home-page: Author: AdaCore Author-email: info@adacore.com License: GPLv3 Location: /home/ada/opt/alire/venv/lib/python3.10/site-packages Requires: e3-core Required-by: --- Name: e3-core Version: 22.4.0 Summary: E3 core. Tools and library for building and testing software Home-page: https://github.com/AdaCore/e3-core Author: AdaCore Author-email: info@adacore.com License: GPLv3 Location: /home/ada/opt/alire/venv/lib/python3.10/site-packages Requires: colorama, ld, packaging, psutil, python-dateutil, pyyaml, requests, requests-cache, requests-toolbelt, setuptools, stevedore, tqdm Required-by: e3-testsuite * Install pip dependencies using requirements.txt --- testsuite/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/README.md b/testsuite/README.md index 933fef07..96534f13 100644 --- a/testsuite/README.md +++ b/testsuite/README.md @@ -28,7 +28,7 @@ $ virtualenv my-virtual-env $ source my-virtual-env/bin/activate # Install e3-testsuite and all its dependencies -$ pip install e3-testsuite +$ pip install -r requirements.txt # You should now be able to run the testsuite (make sure you built alr and # made it available with your PATH): -- 2.39.5