Skip to content

Commit

Permalink
trying to get code coverage to work
Browse files Browse the repository at this point in the history
  • Loading branch information
gp0 committed Mar 21, 2015
1 parent 1cb48c1 commit 2fe7f67
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ language: julia
julia:
- release
- nightly
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("BiomolecularStructures"); Pkg.test("BiomolecularStructures"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("BiomolecularStructures")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
5 changes: 5 additions & 0 deletions src/BiomolecularStructures.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module BiomolecularStructures
# include sub-modules
include(Pkg.dir("BiomolecularStructures", "src/KABSCH/", "kabsch.jl"))
include(Pkg.dir("BiomolecularStructures", "src/PDB/", "pdb.jl"))
end

0 comments on commit 2fe7f67

Please sign in to comment.