diff --git a/.github/workflows/pr_validation.yaml b/.github/workflows/pr_validation.yaml index d372e17..3506aa1 100644 --- a/.github/workflows/pr_validation.yaml +++ b/.github/workflows/pr_validation.yaml @@ -17,9 +17,10 @@ jobs: name: Test-${{matrix.os}} runs-on: ${{matrix.os}} + # The docker image for v5.0.9 doesn't exist for windows, we can only test on linux. strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] steps: - name: "Checkout" diff --git a/src/Akka.Persistence.EventStore.Tests/EventStoreJournalAltAdapterSpec.cs b/src/Akka.Persistence.EventStore.Tests/EventStoreJournalAltAdapterSpec.cs index b23f5d2..49974f1 100644 --- a/src/Akka.Persistence.EventStore.Tests/EventStoreJournalAltAdapterSpec.cs +++ b/src/Akka.Persistence.EventStore.Tests/EventStoreJournalAltAdapterSpec.cs @@ -1,6 +1,7 @@ using Akka.Configuration; using Akka.Persistence.TCK.Journal; using Xunit; +using Xunit.Abstractions; namespace Akka.Persistence.EventStore.Tests { @@ -10,31 +11,32 @@ public class EventStoreJournalAltAdapterSpec : JournalSpec, IClassFixture