Skip to content

Commit

Permalink
Merge pull request #32 from CSBiology/DynObj-qol
Browse files Browse the repository at this point in the history
DynObj rework and various tests
  • Loading branch information
kMutagene authored Sep 19, 2024
2 parents 16b31cf + f019aba commit f928164
Show file tree
Hide file tree
Showing 11 changed files with 2,374 additions and 460 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -197,4 +197,5 @@ docsrc/tools/FSharp.Formatting.svclog
dist
/tests/**/js
/tests/**/py
/.venv
/.venv
/node_modules
4 changes: 4 additions & 0 deletions DynamicObj.sln
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "DynamicObject.Tests", "test
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "DynamicObject.Immutable.Tests", "tests\DynamicObject.Immutable.Tests\DynamicObject.Immutable.Tests.fsproj", "{0F6A539F-82D2-4BDC-8BF0-F2D261873B92}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{E0867002-4410-4E5F-BE71-46ABBE93ED07}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -88,8 +90,10 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{B8BF1554-AAC3-434E-9502-FC83B43F3704} = {E0867002-4410-4E5F-BE71-46ABBE93ED07}
{D62D0901-DB69-4C64-AC63-FBBBDCF6BC7D} = {988D804A-3A42-4E46-B233-B64F5C22524B}
{C73AB951-91F2-4668-B2E0-B58298E5F664} = {39AA72A1-A628-481B-A2B5-94E2BD163061}
{5E7DAC28-7752-4209-B3BB-6DCE54C28AD8} = {E0867002-4410-4E5F-BE71-46ABBE93ED07}
{39192F2D-164B-4905-A7D7-5C5B0FFCD2BB} = {988D804A-3A42-4E46-B233-B64F5C22524B}
{0F6A539F-82D2-4BDC-8BF0-F2D261873B92} = {988D804A-3A42-4E46-B233-B64F5C22524B}
EndGlobalSection
Expand Down
1 change: 0 additions & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
@echo off
cls

set PYTHONIOENCODING=utf-8

Expand Down
14 changes: 11 additions & 3 deletions build/TestTasks.fs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,17 @@ module RunTests =
|> Seq.iter dotnetRun
}

let runTests = BuildTask.create "RunTests" [clean; build; RunTests.runTestsJs; (*RunTests.runTestsJsNative; *)RunTests.runTestsPy;(*RunTests.runTestsPyNative; *)RunTests.runTestsDotnet] {
()
}
let runTests = BuildTask.createEmpty "RunTests" [
clean;
build;
RunTests.runTestsPy;
(*RunTests.runTestsPyNative; *)
RunTests.runTestsJs;
(*RunTests.runTestsJsNative; *)
RunTests.runTestsDotnet

]



// to do: use this once we have actual tests
Expand Down
Loading

0 comments on commit f928164

Please sign in to comment.