-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Enable Sqlite tests, uncommented snapshot tests in Persistence.Testkit #2724
Enable Sqlite tests, uncommented snapshot tests in Persistence.Testkit #2724
Conversation
@alexvaluyskiy snapshot specs are failing on mono |
@@ -14,7 +14,8 @@ | |||
|
|||
namespace Akka.Persistence.TestKit.Tests | |||
{ | |||
public class LocalSnapshotStoreSpec : SnapshotStoreSpec | |||
// FIXME | |||
public abstract class LocalSnapshotStoreSpec : SnapshotStoreSpec |
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.
What's the reason to make it abstract?
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.
To skip only LocalSnapshot spec, not all specs inherited from SnapshotStoreSpec
@alexvaluyskiy now all sqlite specs failed on windows |
@alexvaluyskiy @Silv3rcircl3 that might be because the |
98b1f14
to
fe4cd7f
Compare
@@ -4,7 +4,7 @@ | |||
<PropertyGroup> | |||
<AssemblyTitle>Akka.Persistence.Sqlite.Tests</AssemblyTitle> | |||
<TargetFrameworks>net452;netcoreapp1.1</TargetFrameworks> | |||
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> | |||
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net452' And '$(OS)' == 'Windows_NT'">win7-x64</RuntimeIdentifier> |
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.
Workaround
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.
Looks good to me in the short-run - I @heynickc was mentioning this morning that the runtime might be part of the reason why we're having some trouble with the tests...
Partially fixes #2659