Skip to content

Commit

Permalink
Update travis, license, and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jan 26, 2017
1 parent 91fed82 commit 81706ac
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
12 changes: 10 additions & 2 deletions .travis.yml
Expand Up @@ -3,8 +3,16 @@ os:
- linux
- osx
julia:
- 0.4
- 0.5
- release
- nightly
notifications:
email: false
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd()); Pkg.build("Format"); Pkg.test("Format"; coverage=true)'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
1 change: 1 addition & 0 deletions LICENSE.md
Expand Up @@ -2,6 +2,7 @@ The JuliaString/Format.jl package is licensed under the MIT "Expat" License,
and is based on the JuliaIO/Formatting.jl package, licensed as follows:

> Copyright (c) 2014: Dahua Lin and contributors.
> Portions Copyright (c) 2017: Gandalf Software, Inc. (Scott Paul Jones) and other contributors
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion REQUIRE
@@ -1 +1 @@
julia 0.4
julia 0.5
6 changes: 3 additions & 3 deletions test/runtests.jl
@@ -1,7 +1,7 @@
using Format
using Base.Test

# include( "cformat.jl" )
# include( "fmtspec.jl" )
# include( "formatexpr.jl" )
include( "cformat.jl" )
include( "fmtspec.jl" )
include( "formatexpr.jl" )
include( "fmt.jl" )

0 comments on commit 81706ac

Please sign in to comment.