mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 04:57:54 +00:00
f794160dcf
Some of the pieces may be usable in Docker image creation
16 lines
307 B
Bash
Executable File
16 lines
307 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
TAHOE_LAFS_TOX_ENVIRONMENT=$1
|
|
shift
|
|
|
|
TAHOE_LAFS_TOX_ARGS=$1
|
|
shift || :
|
|
|
|
# Get everything else installed in it, too.
|
|
/tmp/tests/bin/tox \
|
|
-c /tmp/project/tox.ini \
|
|
--workdir /tmp/tahoe-lafs.tox \
|
|
--notest \
|
|
-e "${TAHOE_LAFS_TOX_ENVIRONMENT}" \
|
|
${TAHOE_LAFS_TOX_ARGS}
|