Skip to content

Commit 4e5ed94

Browse files
authored
Merge pull request #19 from JuliaAI/dev
For a 0.2.3 release
2 parents 6eb89d9 + 5929f2f commit 4e5ed94

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MLJTestIntegration"
22
uuid = "697918b4-fdc1-4f9e-8ff9-929724cee270"
33
authors = ["Anthony D. Blaom <[email protected]>"]
4-
version = "0.2.2"
4+
version = "0.2.3"
55

66
[deps]
77
MLJ = "add582a8-e3ab-11e8-2d5e-e98b27df1bc7"

examples/bigtest/Manifest.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -770,9 +770,9 @@ version = "0.18.4"
770770

771771
[[deps.MLJBase]]
772772
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"]
773-
git-tree-sha1 = "2a3408ccdb08f3ac4f1622ad874bb725144cf5c9"
773+
path = "/Users/anthony/MLJ/MLJBase"
774774
uuid = "a7f614a8-145f-11e9-1d2a-a57a1082229d"
775-
version = "0.20.15"
775+
version = "0.20.17"
776776

777777
[[deps.MLJClusteringInterface]]
778778
deps = ["Clustering", "Distances", "MLJModelInterface"]
@@ -824,7 +824,7 @@ version = "0.6.4"
824824

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

src/test.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ Returns `(failures, summary)` where:
5555
| n/a | skipped because not applicable |
5656
| - | test skipped for some other reason |
5757
58+
In the special case of `operations`, an empty entry, `""`, indicates that there don't
59+
appear to be any operations implemented.
60+
5861
# Testing with automatic code loading
5962
6063
World Age issues pose challenges for testing Julia code if some code
@@ -266,7 +269,7 @@ function test(model_proxies, data...; mod=Main, level=2, throw=false, verbosity=
266269
operations, outcome =
267270
MLJTestIntegration.operations(fitted_machine, data...; throw, verbosity)
268271
# special treatment to get list of operations in `summary`:
269-
if operations == "×"
272+
if outcome == "×"
270273
row = update(row, i, :operations, operations, outcome)
271274
continue
272275
else

0 commit comments

Comments
 (0)