mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 03:41:53 +02:00
Don't run nosetests from the root of our repo (#3620)
This commit is contained in:
+6
-5
@@ -148,20 +148,22 @@ cd ~-
|
|||||||
# get a snapshot of the CLI help for the docs
|
# get a snapshot of the CLI help for the docs
|
||||||
certbot --help all > docs/cli-help.txt
|
certbot --help all > docs/cli-help.txt
|
||||||
|
|
||||||
|
cd ..
|
||||||
# freeze before installing anything else, so that we know end-user KGS
|
# freeze before installing anything else, so that we know end-user KGS
|
||||||
# make sure "twine upload" doesn't catch "kgs"
|
# make sure "twine upload" doesn't catch "kgs"
|
||||||
if [ -d ../kgs ] ; then
|
if [ -d kgs ] ; then
|
||||||
echo Deleting old kgs...
|
echo Deleting old kgs...
|
||||||
rm -rf ../kgs
|
rm -rf kgs
|
||||||
fi
|
fi
|
||||||
mkdir ../kgs
|
mkdir kgs
|
||||||
kgs="../kgs/$version"
|
kgs="kgs/$version"
|
||||||
pip freeze | tee $kgs
|
pip freeze | tee $kgs
|
||||||
pip install nose
|
pip install nose
|
||||||
for module in certbot $subpkgs_modules ; do
|
for module in certbot $subpkgs_modules ; do
|
||||||
echo testing $module
|
echo testing $module
|
||||||
nosetests $module
|
nosetests $module
|
||||||
done
|
done
|
||||||
|
cd ~-
|
||||||
|
|
||||||
# pin pip hashes of the things we just built
|
# pin pip hashes of the things we just built
|
||||||
for pkg in acme certbot certbot-apache certbot-nginx ; do
|
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 ~-
|
cd ~-
|
||||||
|
|
||||||
echo "New root: $root"
|
echo "New root: $root"
|
||||||
echo "KGS is at $root/kgs"
|
|
||||||
echo "Test commands (in the letstest repo):"
|
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 $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'
|
echo 'python multitester.py targets.yaml $AWK_KEY $USERNAME scripts/test_letsencrypt_auto_certonly_standalone.sh --branch candidate-0.1.1'
|
||||||
|
|||||||
Reference in New Issue
Block a user