diff --git a/src/IceFloeTracker.jl b/src/IceFloeTracker.jl index 1e045b2e..69ced447 100644 --- a/src/IceFloeTracker.jl +++ b/src/IceFloeTracker.jl @@ -40,6 +40,12 @@ export readdlm, centered, imrotate +# For IFTPipeline +using HDF5 +export HDF5, PyCall +export DataFrames, DataFrame, nrow, Not, select! +export Dates, Time, Date, DateTime,@dateformat_str + include("utils.jl") include("persist.jl") include("landmask.jl") diff --git a/test/runtests.jl b/test/runtests.jl index 38e77fb9..aca5652b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -20,31 +20,31 @@ testnames = [n[6:(end - 3)] for n in alltests] to_test = alltests # uncomment this line to run all tests or add individual files below [ -# "test-create-landmask.jl", -# "test-create-cloudmask.jl", -# "test-normalize-image.jl", -# "test-persist.jl", -# "test-utils-padding.jl", -# "test-discrim-ice-water.jl", -# "test-find-ice-labels.jl", -# "test-segmentation-a.jl", -# "test-segmentation-b.jl", -# "test-segmentation-watershed.jl", -# "test-segmentation-f.jl", -# "test-bwtraceboundary.jl", -# "test-resample-boundary.jl", -# "test-regionprops.jl", -# "test-psi-s.jl", -# "test-crosscorr.jl" -# "test-bwperim.jl", -# "test-bwareamaxfilt.jl" -# "test-register-mismatch.jl", -# "test-utils-imextendedmin.jl", -# "test-morphSE.jl", -# "test-hbreak.jl", -# "test-bridge.jl", -# "test-branch.jl" -# "test-pipeline.jl" + # "test-create-landmask.jl", + # "test-create-cloudmask.jl", + # "test-normalize-image.jl", + # "test-persist.jl", + # "test-utils-padding.jl", + # "test-discrim-ice-water.jl", + # "test-find-ice-labels.jl", + # "test-segmentation-a.jl", + # "test-segmentation-b.jl", + # "test-segmentation-watershed.jl", + # "test-segmentation-f.jl", + # "test-bwtraceboundary.jl", + # "test-resample-boundary.jl", + # "test-regionprops.jl", + # "test-psi-s.jl", + # "test-crosscorr.jl" + # "test-bwperim.jl", + # "test-bwareamaxfilt.jl" + # "test-register-mismatch.jl", + # "test-utils-imextendedmin.jl", + # "test-morphSE.jl", + # "test-hbreak.jl", + # "test-bridge.jl", + # "test-branch.jl" + # "test-pipeline.jl" ] # Run the tests