This commit is contained in:
Chris Cheetham 2020-04-27 09:04:13 -04:00
Родитель 61920529f9
Коммит 0a0e85fdd7
12 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
Feature: CloudFoundry Configuration Feature: CloudFoundry Configuration
In order to show you how to use Steeltoe for CloudFoundry configurations In order to show you how to use Steeltoe for CloudFoundry configurations
You can run some CloudFoundry configuration samples You can run some CloudFoundry configuration samples

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@configserver @configserver
Feature: Simple CloudFoundry Configuration Feature: Simple CloudFoundry Configuration
In order to show you how to use Steeltoe for simple CloudFoundry configurations In order to show you how to use Steeltoe for simple CloudFoundry configurations

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@mysql @mysql
Feature: MySql Connector Feature: MySql Connector
In order to show you how to use Steeltoe for connecting to MySql In order to show you how to use Steeltoe for connecting to MySql

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@mysql @mysql
Feature: MySqlEF6 Connector Feature: MySqlEF6 Connector
In order to show you how to use Steeltoe for connecting to MySql using EntityFramework 6 In order to show you how to use Steeltoe for connecting to MySql using EntityFramework 6

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@mysql @mysql
Feature: MySqlEFCore Connector Feature: MySqlEFCore Connector
In order to show you how to use Steeltoe for connecting to MySql using EntityFramework Core In order to show you how to use Steeltoe for connecting to MySql using EntityFramework Core

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@postgresql @postgresql
Feature: PostgreEFCore Connector Feature: PostgreEFCore Connector
In order to show you how to use Steeltoe for connecting to PostgreSql using EntityFramework Core In order to show you how to use Steeltoe for connecting to PostgreSql using EntityFramework Core

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@postgresql @postgresql
Feature: PostgreSql Connector Feature: PostgreSql Connector
In order to show you how to use Steeltoe for connecting to PostgreSql In order to show you how to use Steeltoe for connecting to PostgreSql

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@rabbitmq @rabbitmq
Feature: RabbitMQ Connector Feature: RabbitMQ Connector
In order to show you how to use Steeltoe for connecting to RabbitMQ In order to show you how to use Steeltoe for connecting to RabbitMQ

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@redis @redis
Feature: Redis Connector Feature: Redis Connector
In order to show you how to use Steeltoe for connecting to Redis In order to show you how to use Steeltoe for connecting to Redis

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
@mysql @mysql
Feature: Cloud Foundry Samples Feature: Cloud Foundry Samples
In order to show you how to use Steeltoe Management Endpoint In order to show you how to use Steeltoe Management Endpoint

Просмотреть файл

@ -1,4 +1,4 @@
@cloud @cloudfoundry
Feature: CloudFoundry Single SignOn Feature: CloudFoundry Single SignOn
In order to show you how to use Steeltoe with CloudFoundry Single SignOn In order to show you how to use Steeltoe with CloudFoundry Single SignOn
You can run some CloudFoundry Single SignOn samples You can run some CloudFoundry Single SignOn samples

Просмотреть файл

@ -49,7 +49,7 @@ def before_scenario(context, scenario):
context.cleanups = [] context.cleanups = []
setup_env(context, scenario) setup_env(context, scenario)
tags = scenario.tags + scenario.feature.tags tags = scenario.tags + scenario.feature.tags
if 'cloud' in tags: if 'cloudfoundry' in tags:
setup_cloud(context, scenario) setup_cloud(context, scenario)
def setup_env(context, scenario): def setup_env(context, scenario):