-
Notifications
You must be signed in to change notification settings - Fork 16
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
FixtureLifeCycle #45
FixtureLifeCycle #45
Conversation
I think this is all that's needed!! |
are we able to do a release following this merge? |
@@ -2,15 +2,15 @@ | |||
<Import Project="..\common.props" /> | |||
<PropertyGroup> | |||
<AssemblyTitle>Akka.TestKit.NUnit.Tests</AssemblyTitle> | |||
<TargetFrameworks>net45;netcoreapp2.0</TargetFrameworks> | |||
<TargetFrameworks>net6.0</TargetFrameworks> |
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.
I'm assuming this is overridden when building packages?
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.
<IsPackable>true</IsPackable> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Akka.TestKit" Version="$(AkkaTestKitVersion)" /> | ||
<PackageReference Include="Akka.TestKit" Version="1.4.39" /> |
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.
should probably maintain the msbuild property reference here
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.
@eaba -- closed without comment? what's the story here? |
@mchandschuh this code was included in PR #47 which was merged in. I'm reviewing these changes now and prepping an update for release. |
Changes
@mchandschuh
nunit 3.13 added [FixtureLifeCycle(LifeCycle.InstancePerTestCase)] which should obviate the need for code bombing when an ActorSystem is provided to the TestKit constructor.
Describe the bug
To Reproduce
See: akkadotnet/akka.net#1092