Skip to content

Commit

Permalink
Merge pull request #19 from JuliaAI/dev
Browse files Browse the repository at this point in the history
For a 0.2.3 release
  • Loading branch information
ablaom authored Sep 19, 2022
2 parents 6eb89d9 + 5929f2f commit 4e5ed94
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJTestIntegration"
uuid = "697918b4-fdc1-4f9e-8ff9-929724cee270"
authors = ["Anthony D. Blaom <[email protected]>"]
version = "0.2.2"
version = "0.2.3"

[deps]
MLJ = "add582a8-e3ab-11e8-2d5e-e98b27df1bc7"
Expand Down
6 changes: 3 additions & 3 deletions examples/bigtest/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,9 @@ version = "0.18.4"

[[deps.MLJBase]]
deps = ["CategoricalArrays", "CategoricalDistributions", "ComputationalResources", "Dates", "DelimitedFiles", "Distributed", "Distributions", "InteractiveUtils", "InvertedIndices", "LinearAlgebra", "LossFunctions", "MLJModelInterface", "Missings", "OrderedCollections", "Parameters", "PrettyTables", "ProgressMeter", "Random", "ScientificTypes", "Serialization", "StatisticalTraits", "Statistics", "StatsBase", "Tables"]
git-tree-sha1 = "2a3408ccdb08f3ac4f1622ad874bb725144cf5c9"
path = "/Users/anthony/MLJ/MLJBase"
uuid = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
version = "0.20.15"
version = "0.20.17"

[[deps.MLJClusteringInterface]]
deps = ["Clustering", "Distances", "MLJModelInterface"]
Expand Down Expand Up @@ -824,7 +824,7 @@ version = "0.6.4"

[[deps.MLJModelInterface]]
deps = ["Random", "ScientificTypesBase", "StatisticalTraits"]
git-tree-sha1 = "16fa7c2e14aa5b3854bc77ab5f1dbe2cdc488903"
path = "/Users/anthony/MLJ/MLJModelInterface"
uuid = "e80e1ace-859a-464e-9ed9-23947d8ae3ea"
version = "1.6.0"

Expand Down
5 changes: 4 additions & 1 deletion src/test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Returns `(failures, summary)` where:
| n/a | skipped because not applicable |
| - | test skipped for some other reason |
In the special case of `operations`, an empty entry, `""`, indicates that there don't
appear to be any operations implemented.
# Testing with automatic code loading
World Age issues pose challenges for testing Julia code if some code
Expand Down Expand Up @@ -266,7 +269,7 @@ function test(model_proxies, data...; mod=Main, level=2, throw=false, verbosity=
operations, outcome =
MLJTestIntegration.operations(fitted_machine, data...; throw, verbosity)
# special treatment to get list of operations in `summary`:
if operations == "×"
if outcome == "×"
row = update(row, i, :operations, operations, outcome)
continue
else
Expand Down

0 comments on commit 4e5ed94

Please sign in to comment.