Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2016-10-12 05:15:11 +0300
committerBrad Warren <bmw@eff.org>2016-10-13 01:55:50 +0300
commit1b65244d0d51c3fe4dd757782d098e67eca1672f (patch)
treee7435b8583f5f7d4df0baabe7645f69dde2682dd
parent052be6d4bae07ea401e0ee4cd72a2862b9be5f46 (diff)
Don't run nosetests from the root of our repo (#3620)
-rwxr-xr-xtools/release.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/release.sh b/tools/release.sh
index f5c78da27..57985d7a4 100755
--- a/tools/release.sh
+++ b/tools/release.sh
@@ -148,20 +148,22 @@ cd ~-
# get a snapshot of the CLI help for the docs
certbot --help all > docs/cli-help.txt
+cd ..
# freeze before installing anything else, so that we know end-user KGS
# make sure "twine upload" doesn't catch "kgs"
-if [ -d ../kgs ] ; then
+if [ -d kgs ] ; then
echo Deleting old kgs...
- rm -rf ../kgs
+ rm -rf kgs
fi
-mkdir ../kgs
-kgs="../kgs/$version"
+mkdir kgs
+kgs="kgs/$version"
pip freeze | tee $kgs
pip install nose
for module in certbot $subpkgs_modules ; do
echo testing $module
nosetests $module
done
+cd ~-
# pin pip hashes of the things we just built
for pkg in acme certbot certbot-apache certbot-nginx ; do
@@ -215,7 +217,6 @@ echo gpg -U $RELEASE_GPG_KEY --detach-sign --armor $name.$rev.tar.xz
cd ~-
echo "New root: $root"
-echo "KGS is at $root/kgs"
echo "Test commands (in the letstest repo):"
echo 'python multitester.py targets.yaml $AWS_KEY $USERNAME scripts/test_leauto_upgrades.sh --alt_pip $YOUR_PIP_REPO --branch public-beta'
echo 'python multitester.py targets.yaml $AWK_KEY $USERNAME scripts/test_letsencrypt_auto_certonly_standalone.sh --branch candidate-0.1.1'