-
Notifications
You must be signed in to change notification settings - Fork 567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable Azure ServiceBus emulator functional tests #7067
Conversation
The emulator isn't reliable / consistent in CI. Disabling for now. See dotnet#7066
|
||
<!-- on helix this will be available in the source dir --> | ||
<XunitRunnerJson Condition="'$(RepoRoot)' == ''">xunit.runner.json</XunitRunnerJson> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(SkipUnstableEmulators)' == 'true'"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: Can this just be done in the parent's Directory.Build.props so it applies to both playground and tests and that way we don't have to change multiple places later?
Feel free to not block on this one, but just something to consider.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that we already had this code in the repo.
- Orignally added in Add AzureFunctionsEndToEnd with prototype implementation #5418
- Renamed in Support connection name-based configuration for Azure components #5827
- Removed in Add Service Bus emulator support #6737
- and now brought back with another different name.
One reason to not put it in the root of the repo is so it doesn't affect other projects - like stuff under src
.
@@ -17,11 +17,17 @@ | |||
<PlaygroundSourceDir>$(MSBuildThisFileDirectory)..\..\playground\</PlaygroundSourceDir> | |||
<TestsSharedDir>$(MSBuildThisFileDirectory)..\Shared\</TestsSharedDir> | |||
<RunSettingsFilePath>$(MSBuildThisFileDirectory).runsettings</RunSettingsFilePath> | |||
<!-- Skip emulators that don't start consistently when running in CI. --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: I know you did it on the facts, but might be good to also add the link to the issue tracking removing this in here too. Also not block on this, if you agree we can add it in your next set of changes.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @eerhardt !
The emulator isn't reliable / consistent in CI. Disabling for now.
See #7066