]> arthur.barton.de Git - bup.git/commitdiff
Install xdist in prep-for-*-build
authorJohannes Berg <johannes@sipsolutions.net>
Fri, 29 May 2020 13:53:20 +0000 (15:53 +0200)
committerRob Browning <rlb@defaultvalue.org>
Thu, 26 Nov 2020 21:53:09 +0000 (15:53 -0600)
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
[rlb@defaultvalue.org: adjust commit message after moving some code]

dev/prep-for-debianish-build
dev/prep-for-freebsd-build
dev/prep-for-macos-build

index f574ad4086498e7b13a1c9de6decd3f0ee8242c0..d45ce303bb4b4e9c44c7d4486de7669a568f1b04 100755 (executable)
@@ -24,13 +24,15 @@ case "$pyver" in
         apt-get install -y \
                 $common_debs \
                 python2.7-dev python-fuse \
-                python-"$xattr" python-tornado python-pytest
+                python-"$xattr" python-tornado python-pytest \
+                python-pytest-xdist
         ;;
     python3)
         apt-get install -y \
                 $common_debs \
                 python3-dev python3-distutils python3-fuse \
-                python3-"$xattr" python3-tornado python3-pytest
+                python3-"$xattr" python3-tornado python3-pytest \
+                python3-pytest-xdist
         ;;
     *)
         usage 1>&2
index 7444917cbb3a5fa8770f3f5c0909eba9590e982c..446ec40f4d3455b5df9ee5b330038eef06005074 100755 (executable)
@@ -21,10 +21,10 @@ pkg install rdiff-backup || true
 
 case "$pyver" in
     python2)
-        pkg install $common_pkgs python2 py27-tornado pytest
+        pkg install $common_pkgs python2 py27-tornado pytest pytest-xdist
         ;;
     python3)
-        pkg install $common_pkgs python3 py37-tornado pytest3
+        pkg install $common_pkgs python3 py37-tornado pytest3 pytest3-xdist
         ;;
     *)
         usage 1>&2
index ca0ab6d9c31648d849f1db952c850d6676165892..94233a5091c62557fa9ae07472dd9a13b7f8e35c 100755 (executable)
@@ -22,12 +22,12 @@ brew link --force readline
 case "$pyver" in
     python2)
         easy_install-2.7 --user pip
-        /Users/anka/Library/Python/2.7/bin/pip install --user pytest
+        /Users/anka/Library/Python/2.7/bin/pip install --user pytest pytest-xdist
         ;;
     python3)
         brew install python
         easy_install --user pip
-        pip3 install --user pytest
+        pip3 install --user pytest pytest-xdist
         ;;
     *)
         usage 1>&2