fsprojects / FSharp.Azure.Storage

F# API for using Microsoft Azure Table Storage service
MIT License
75 stars 16 forks source link

Add missing packages.config to tests project #23

Closed eiriktsarpalis closed 8 years ago

daniel-chambers commented 8 years ago

Tested it here in VS2013; looks like there is a problem where the Visual Studio xunit runner is running tests in parallel and is causing them to fail. If you could add

<appSettings>
  <add key="xunit.parallelizeTestCollections" value="false" />
</appSettings>

to the test project's app.config, that'll disable that and fix the problem, then I'll merge the PR.

Thanks!

eiriktsarpalis commented 8 years ago

done!

daniel-chambers commented 8 years ago

Awesome. Thanks!