Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 510 Bytes

CONTRIBUTING.md

File metadata and controls

20 lines (14 loc) · 510 Bytes

Running tests

Unless you are testing older .NET runtimes on Windows, you should run the tests against the newer runtimes as follows:

MOMENTO_API_KEY=$your_momento_token make test-net6

To test against older .NET runtimes run:

MOMENTO_API_KEY=$your_momento_token make test-net-framework

To run specific tests:

MOMENTO_API_KEY=$your_momento_token dotnet test --framework net6.0 --filter "FullyQualifiedName~CacheDataTest"