506279235d
Note that you need a pretty recent eventlet to pick up https://github.com/eventlet/eventlet/commit/f0bc79e Change-Id: I6b006b972e7431c406039f4e0f6890a8f74a4432
16 lines
382 B
Bash
Executable File
16 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# How-To debug functional tests:
|
|
# SWIFT_TEST_IN_PROCESS=1 tox -e func -- --pdb test.functional.tests.TestFile.testCopy
|
|
|
|
SRC_DIR=$(python -c "import os; print(os.path.dirname(os.path.realpath('$0')))")
|
|
|
|
cd ${SRC_DIR} > /dev/null
|
|
export TESTS_DIR=${SRC_DIR}/test/functional
|
|
ARGS="--concurrency 1 ${@:-"--pretty"}"
|
|
ostestr $ARGS
|
|
rvalue=$?
|
|
cd - > /dev/null
|
|
|
|
exit $rvalue
|