TigerFetch.jl

Download TIGER/Line shapefiles from the US Census Bureau
Log | Files | Refs | README | LICENSE

commit dce2cfbcf12af17cd6ff4e51b1dcd17147a19157
parent b0bd308f7aead9458c5dcd52128dd36d79734065
Author: Erik Loualiche <eloualic@umn.edu>
Date:   Sun, 23 Feb 2025 20:58:35 -0600

quick tests.

Diffstat:
Msrc/TigerFetch.jl | 13++++++-------
Mtest/UnitTests/assets.jl | 4+---
Mtest/runtests.jl | 2+-
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", ] # --------------------------------------------------------------------------------------------------