Skip to content

Commit

Permalink
Add Project.toml file (close issue #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoldfar committed Sep 25, 2019
1 parent 710e8d0 commit 4104e0b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .hgtags

This file was deleted.

15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,21 @@ os:
julia:
- 0.6
- 0.7
- 1.0
- nightly

## Allow failures on nightly julia
## (tests will run but not make your overall status red)
matrix:
fast_finish: true
allow_failures:
- julia: nightly

## uncomment the following lines to override the default test script
#script:
# - julia -e 'Pkg.clone(pwd()); Pkg.build("WeightedNorms"); Pkg.test("WeightedNorms"; coverage=true)'

# push coverage results to Coveralls and Codecov
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("WeightedNorms")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("WeightedNorms")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e "VERSION >= v\"0.7.0-DEV.5183\" && using Pkg; cd(\"${TRAVIS_BUILD_DIR}\"); Pkg.add(\"Coverage\"); using Coverage; Coveralls.submit(Coveralls.process_folder())"
- julia -e "VERSION >= v\"0.7.0-DEV.5183\" && using Pkg; cd(\"${TRAVIS_BUILD_DIR}\"); Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(Codecov.process_folder())"
10 changes: 10 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name = "WeightedNorms"
uuid = "e9f61048-24a8-11e9-2295-7de57a60e779"
authors = ["Jonathan Goldfarb <jgoldfar@gmail.com>"]
version = "0.1.0"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

0 comments on commit 4104e0b

Please sign in to comment.