[Python-modules-commits] [python-pip] 01/01: d/tests/*.sh: export PIP_DISABLE_PIP_VERSION_CHECK=1 to prevent stderr warnings (and thus test failures) for when we get behind new upstream releases.
Barry Warsaw
barry at moszumanska.debian.org
Wed May 11 15:26:31 UTC 2016
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository python-pip.
commit 2a42b71e2e5695b73728a4595478841c0af2a099
Author: Barry Warsaw <barry at python.org>
Date: Wed May 11 11:26:27 2016 -0400
d/tests/*.sh: export PIP_DISABLE_PIP_VERSION_CHECK=1 to prevent stderr warnings (and thus test failures) for when we get behind new upstream releases.
---
debian/changelog | 8 ++++++++
debian/tests/pip2-root.sh | 2 ++
debian/tests/pip2-user.sh | 1 +
debian/tests/pip3-editable.sh | 1 +
debian/tests/pip3-root.sh | 2 ++
debian/tests/pip3-user.sh | 1 +
6 files changed, 15 insertions(+)
diff --git a/debian/changelog b/debian/changelog
index 2c414c5..3c69f67 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+python-pip (8.1.2-2) UNRELEASED; urgency=medium
+
+ * d/tests/*.sh: export PIP_DISABLE_PIP_VERSION_CHECK=1 to prevent
+ stderr warnings (and thus test failures) for when we get behind
+ new upstream releases.
+
+ -- Barry Warsaw <barry at debian.org> Wed, 11 May 2016 11:24:35 -0400
+
python-pip (8.1.2-1) unstable; urgency=medium
* New upstream release.
diff --git a/debian/tests/pip2-root.sh b/debian/tests/pip2-root.sh
index 26d5b88..c2a1bdb 100644
--- a/debian/tests/pip2-root.sh
+++ b/debian/tests/pip2-root.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+export PIP_DISABLE_PIP_VERSION_CHECK=1
+
pip install world
pip list
ls -ld /usr/local/lib/python2.*/dist-packages/world-*.dist-info
diff --git a/debian/tests/pip2-user.sh b/debian/tests/pip2-user.sh
index 4fb05b4..1be8421 100644
--- a/debian/tests/pip2-user.sh
+++ b/debian/tests/pip2-user.sh
@@ -1,6 +1,7 @@
#!/bin/sh
export HOME=$ADTTMP
+export PIP_DISABLE_PIP_VERSION_CHECK=1
pip install world
pip list
diff --git a/debian/tests/pip3-editable.sh b/debian/tests/pip3-editable.sh
index ff2cb3f..d032cc0 100644
--- a/debian/tests/pip3-editable.sh
+++ b/debian/tests/pip3-editable.sh
@@ -1,6 +1,7 @@
#!/bin/sh
export HOME=$ADTTMP
+export PIP_DISABLE_PIP_VERSION_CHECK=1
cd $HOME
mkdir stupid
diff --git a/debian/tests/pip3-root.sh b/debian/tests/pip3-root.sh
index a662185..372c9ce 100644
--- a/debian/tests/pip3-root.sh
+++ b/debian/tests/pip3-root.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+export PIP_DISABLE_PIP_VERSION_CHECK=1
+
pip3 install world
pip3 list
ls -ld /usr/local/lib/python3.*/dist-packages/world-*.dist-info
diff --git a/debian/tests/pip3-user.sh b/debian/tests/pip3-user.sh
index 4e73e4d..64e4f7e 100644
--- a/debian/tests/pip3-user.sh
+++ b/debian/tests/pip3-user.sh
@@ -1,6 +1,7 @@
#!/bin/sh
export HOME=$ADTTMP
+export PIP_DISABLE_PIP_VERSION_CHECK=1
pip3 install world
pip3 list
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pip.git
More information about the Python-modules-commits
mailing list