summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-08 15:51:22 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-08 15:52:08 +0000
commit931ce04b0884ebe73158251d0d9a461214dfe1aa (patch)
tree620c00c15198e9728d140554065cb08c860f264c /bitbake
parent18e4688bd52ed7746e7687b225da10f025cafc68 (diff)
downloadpoky-931ce04b0884ebe73158251d0d9a461214dfe1aa.tar.gz
bitbake: toaster: Reference pip3 not pip
Now that we use python3, we should refer to pip3, not pip. [YOCTO #10774] (Bitbake rev: 99136f5f591deef0c96d9aea2dbea1c216f38121) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/bin/toaster2
-rw-r--r--bitbake/lib/toaster/tests/browser/README4
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster
index e0aac1a7bb..de38cece05 100755
--- a/bitbake/bin/toaster
+++ b/bitbake/bin/toaster
@@ -111,7 +111,7 @@ verify_prereq() {
111 if ! sed -n "$exp" $reqfile | python3 - ; then 111 if ! sed -n "$exp" $reqfile | python3 - ; then
112 req=`grep ^Django $reqfile` 112 req=`grep ^Django $reqfile`
113 echo "This program needs $req" 113 echo "This program needs $req"
114 echo "Please install with pip install -r $reqfile" 114 echo "Please install with pip3 install -r $reqfile"
115 return 2 115 return 2
116 fi 116 fi
117 117
diff --git a/bitbake/lib/toaster/tests/browser/README b/bitbake/lib/toaster/tests/browser/README
index e841a3f12a..352c4fe3e9 100644
--- a/bitbake/lib/toaster/tests/browser/README
+++ b/bitbake/lib/toaster/tests/browser/README
@@ -2,9 +2,9 @@
2 2
3These tests require Selenium to be installed in your Python environment. 3These tests require Selenium to be installed in your Python environment.
4 4
5The simplest way to install this is via pip: 5The simplest way to install this is via pip3:
6 6
7 pip install selenium==2.53.2 7 pip3 install selenium==2.53.2
8 8
9Note that if you use other versions of Selenium, some of the tests (such as 9Note that if you use other versions of Selenium, some of the tests (such as
10tests.browser.test_js_unit_tests.TestJsUnitTests) may fail, as these rely on 10tests.browser.test_js_unit_tests.TestJsUnitTests) may fail, as these rely on