mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
* Add pip_install_editable.sh * add install_and_test.sh * simplify tox.ini and fix oldest tests * Put paths & packages on their own line in tox.ini
10 lines
222 B
Bash
Executable file
10 lines
222 B
Bash
Executable file
#!/bin/sh -e
|
|
# pip installs packages in editable mode using certbot-auto's requirements file
|
|
# as constraints
|
|
|
|
args=""
|
|
for requirement in "$@" ; do
|
|
args="$args -e $requirement"
|
|
done
|
|
|
|
"$(dirname $0)/pip_install.sh" $args
|