diff --git a/contrib/examples/actions/workflows/render_config_context.yaml b/contrib/examples/actions/workflows/render_config_context.yaml index 24f2d5394d..0593e8623c 100644 --- a/contrib/examples/actions/workflows/render_config_context.yaml +++ b/contrib/examples/actions/workflows/render_config_context.yaml @@ -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 %> diff --git a/tools/launchdev.sh b/tools/launchdev.sh index 7bd5f64df4..5cc6b13899 100755 --- a/tools/launchdev.sh +++ b/tools/launchdev.sh @@ -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" @@ -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