File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ instance/
7070
7171# Sphinx documentation
7272docs /_build /
73+ docs-src /_build
7374
7475# PyBuilder
7576target /
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Target.create "Clean" (fun _ ->
2121
2222Target.create " Build" ( fun _ ->
2323 Shell.mkdir buildPath
24- run dotnet $" fable-py -c Release -p {cliPath} - -exclude Fable.Core --outDir {buildPath}" srcPath
24+ run dotnet $" fable-py --exclude Fable.Core --outDir {buildPath}" srcPath
2525)
2626
2727Target.create " Run" ( fun _ ->
@@ -31,7 +31,7 @@ Target.create "Run" (fun _ ->
3131Target.create " Test" ( fun _ ->
3232 run dotnet " build" testsPath
3333 [ " native" , dotnet " run" testsPath
34- " python" , dotnet $" fable-py -c Release -p {cliPath} --exclude Fable.Core - -outDir {buildPath}/tests" testsPath
34+ " python" , dotnet $" fable-py --outDir {buildPath}/tests" testsPath
3535 ]
3636 |> runParallel
3737 run pytest $" {buildPath}/tests" " "
You can’t perform that action at this time.
0 commit comments