Skip to content

Commit 87fb3e8

Browse files
committed
Update package versions and add --noCache option for Fable commands; include Fable.Mocha and Fable.Pyxpecto in test dependencies
1 parent f31dc24 commit 87fb3e8

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"rollForward": false
2525
},
2626
"femto": {
27-
"version": "0.19.0",
27+
"version": "0.21.0",
2828
"commands": [
2929
"femto"
3030
],

Directory.Packages.props

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818
<PackageVersion Include="Expecto.Hopac" Version="10.2.3" />
1919
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
2020
<PackageVersion Include="YoloDev.Expecto.TestSdk" Version="0.15.3" />
21-
<PackageVersion Include="Fable.Mocha" Version="2.9.0" />
22-
<PackageVersion Include="Fable.Python" Version="3.0.0" />
23-
<PackageVersion Include="Fable.Pyxpecto" Version="1.0.0" />
21+
<PackageVersion Include="Fable.Mocha" Version="2.17.0" />
22+
<PackageVersion Include="Fable.Python" Version="4.3.0" />
23+
<PackageVersion Include="Fable.Pyxpecto" Version="0.3" />
2424

2525
<!-- Benchmarks group dependencies -->
26-
<PackageVersion Include="BenchmarkDotNet" Version="0.13.5" />
27-
<PackageVersion Include="BenchmarkDotNet.Annotations" Version="0.13.5" />
28-
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.5" />
26+
<PackageVersion Include="BenchmarkDotNet" Version="0.15.0" />
27+
<PackageVersion Include="BenchmarkDotNet.Annotations" Version="0.15.0" />
28+
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.0" />
2929

3030
<!-- Build group dependencies -->
3131
<PackageVersion Include="Fake.Core.Target" Version="5.22.0" />

build/build.fs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,7 @@ let runPythonTests _ =
306306
CreateProcess.fromRawCommand "dotnet" [
307307
"fable"
308308
testProject
309+
"--noCache"
309310
"--lang"
310311
"py"
311312
"-o"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"rollup": "^2.79.2"
1010
},
1111
"scripts": {
12-
"pretest:FsToolkit.ErrorHandling.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.Tests -o js-dist/tests/FsToolkit.ErrorHandling.Tests",
13-
"pretest:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests",
12+
"pretest:FsToolkit.ErrorHandling.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.Tests -o js-dist/tests/FsToolkit.ErrorHandling.Tests --noCache",
13+
"pretest:FsToolkit.ErrorHandling.AsyncSeq.Tests": "dotnet fable tests/FsToolkit.ErrorHandling.AsyncSeq.Tests -o js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests --noCache",
1414
"test:FsToolkit.ErrorHandling.Tests": "mocha js-dist/tests/FsToolkit.ErrorHandling.Tests/Main.js --timeout 60000",
1515
"test:FsToolkit.ErrorHandling.AsyncSeq.Tests": "mocha js-dist/tests/FsToolkit.ErrorHandling.AsyncSeq.Tests/Main.js",
1616
"test": "npm-run-all test:*",

tests/Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
<!-- <PackageReference Include="Microsoft.Bcl.TimeProvider" /> -->
1313
<PackageReference Include="Microsoft.NET.Test.Sdk" />
1414
<PackageReference Include="YoloDev.Expecto.TestSdk" />
15+
<PackageReference Include="Fable.Mocha" />
16+
<PackageReference Include="Fable.Pyxpecto" />
17+
1518
<!-- <PackageReference Include="TimeProviderExtensions"/> -->
1619
<!-- <PackageReference Include="FSharp.Control.TaskSeq"/> -->
1720
</ItemGroup>

0 commit comments

Comments
 (0)