Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ version: 1.0
description: Testing config context render".
tasks:
task1:
action: tests.render_config_context
action: fixtures.render_config_context
output:
- context_value: <% task(task1).result.result.context_value %>
6 changes: 3 additions & 3 deletions tools/launchdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -213,14 +213,14 @@ function st2start(){
cp -Rp ./contrib/packs/ $PACKS_BASE_DIR

if [ "$copy_test_packs" = true ]; then
echo "Copying test packs examples and tests to $PACKS_BASE_DIR"
echo "Copying test packs examples and fixtures to $PACKS_BASE_DIR"
cp -Rp ./contrib/examples $PACKS_BASE_DIR
# Clone st2tests in /tmp directory.
pushd /tmp
git clone https://github.com/StackStorm/st2tests.git
ret=$?
if [ ${ret} -eq 0 ]; then
cp -Rp ./st2tests/packs/tests $PACKS_BASE_DIR
cp -Rp ./st2tests/packs/fixtures $PACKS_BASE_DIR
rm -R st2tests/
else
echo "Failed to clone st2tests repo"
Expand Down Expand Up @@ -428,7 +428,7 @@ function st2start(){
fi

if [ "$copy_test_packs" = true ]; then
st2 run packs.setup_virtualenv packs=tests
st2 run packs.setup_virtualenv packs=fixtures
if [ $? != 0 ]; then
echo "Warning: Unable to setup virtualenv for the \"tests\" pack. Please setup virtualenv for the \"tests\" pack before running integration tests"
fi
Expand Down