commit dce2cfbcf12af17cd6ff4e51b1dcd17147a19157
parent b0bd308f7aead9458c5dcd52128dd36d79734065
Author: Erik Loualiche <[email protected]>
Date: Sun, 23 Feb 2025 20:58:35 -0600
quick tests.
Diffstat:
3 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/src/TigerFetch.jl b/src/TigerFetch.jl
@@ -1,4 +1,9 @@
+
+
+
+# --------------------------------------------------------------------------------------------------
module TigerFetch
+# --------------------------------------------------------------------------------------------------
# --------------------------------------------------------------------------------------------------
@@ -20,16 +25,10 @@ include("cli.jl")
# --------------------------------------------------------------------------------------------------#
-# Export types
-# export download_shapefile # this actually relies on internal types ... that we might not want to export
-# Export CLI function
export tigerdownload # the julia function
-# export tigerfetch # the cli function
# --------------------------------------------------------------------------------------------------
# --------------------------------------------------------------------------------------------------
-
-
-
end # module
+# --------------------------------------------------------------------------------------------------
diff --git a/test/UnitTests/assets.jl b/test/UnitTests/assets.jl
@@ -3,9 +3,7 @@
@testset "Artifact Configuration" begin
- # artifact_toml = joinpath(@__DIR__, "..", "Artifacts.toml")
- artifact_toml = joinpath("/Users/loulou/Dropbox/projects_code/julia_packages/TigerFetch", "Artifacts.toml")
- # artifact_toml = joinpath(@__DIR__, ".", "Artifacts.toml")
+ artifact_toml = joinpath(@__DIR__, "..", "..", "Artifacts.toml")
@test isfile(artifact_toml)
@test_nowarn ensure_artifact_installed("fips_state_county_list", artifact_toml)
diff --git a/test/runtests.jl b/test/runtests.jl
@@ -9,7 +9,7 @@ using SHA
const testsuite = [
"assets",
- "downloads",
+ # "downloads",
]
# --------------------------------------------------------------------------------------------------