-
Notifications
You must be signed in to change notification settings - Fork 569
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. --> | ||
<SkipUnstableEmulators Condition="'$(SkipUnstableEmulators)' == '' and ('$(RepoRoot)' == '' or '$(ContinuousIntegrationBuild)' == 'true' or '$(CODESPACES)' == 'true')">true</SkipUnstableEmulators> | ||
|
||
<!-- 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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. Note that we already had this code in the repo.
One reason to not put it in the root of the repo is so it doesn't affect other projects - like stuff under |
||
<DefineConstants>SKIP_UNSTABLE_EMULATORS;$(DefineConstants)</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- on helix, the file will be in the source directory, so it will get | ||
picked up by msbuild by default --> | ||
|
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.