Skip to content

Commit

Permalink
Updated .travis.yml, small esthetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zgornel committed Sep 10, 2018
1 parent ed08138 commit 09743bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,4 @@ matrix:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("LRUCaching"); Pkg.test("LRUCaching"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("LRUCaching")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("LRUCaching")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e '(VERSION >= v"0.7" && using Pkg); Pkg.add("Coverage"); cd(Pkg.dir("LRUCaching")); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
14 changes: 7 additions & 7 deletions src/LRUCaching.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import Base.show

abstract type AbstractCache end

export AbstractCache,
MemoryCache,
DiskCache,
@memcache,
@diskcache,
sync!, sync,
dump
export AbstractCache,
MemoryCache,
DiskCache,
@memcache,
@diskcache,
sync!, sync,
dump

include("memcache.jl")
include("diskcache.jl")
Expand Down

0 comments on commit 09743bc

Please sign in to comment.