Skip to content

Commit 799e80d

Browse files
Merge pull request #3 from JuliaDiffEq/repairing-tests
Attempt to repair the testing
2 parents a2f442c + 4dc63c1 commit 799e80d

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ notifications:
1414

1515
## uncomment the following lines to override the default test script
1616
#script:
17-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("NbodySimulator"); Pkg.test("NbodySimulator"; coverage=true)'
17+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("NBodySimulator"); Pkg.test("NBodySimulator"; coverage=true)'
1818
after_success:
1919
# push coverage results to Coveralls
20-
- julia -e 'cd(Pkg.dir("NbodySimulator")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
20+
- julia -e 'cd(Pkg.dir("NBodySimulator")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
2121
# push coverage results to Codecov
22-
- julia -e 'cd(Pkg.dir("NbodySimulator")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
22+
- julia -e 'cd(Pkg.dir("NBodySimulator")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The NbodySimulator.jl package is licensed under the MIT "Expat" License:
1+
The NBodySimulator.jl package is licensed under the MIT "Expat" License:
22

33
> Copyright (c) 2018: Mikhail Vaganov.
44
>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# NbodySimulator
1+
# NBodySimulator
22

33
[![Build Status](https://travis-ci.org/JuliaDiffEq/NBodySimulator.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/NBodySimulator.jl)
44
[![Build status](https://ci.appveyor.com/api/projects/status/1ofg9ianvcciq26v?svg=true)](https://ci.appveyor.com/project/Mikhail-Vaganov/nbodysimulator-jl)

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ build_script:
3939
# Need to convert from shallow to complete for Pkg.clone to work
4040
- IF EXIST .git\shallow (git fetch --unshallow)
4141
- C:\projects\julia\bin\julia -e "versioninfo();
42-
Pkg.clone(pwd(), \"NbodySimulator\"); Pkg.build(\"NbodySimulator\")"
42+
Pkg.clone(pwd(), \"NBodySimulator\"); Pkg.build(\"NBodySimulator\")"
4343

4444
test_script:
45-
- C:\projects\julia\bin\julia -e "Pkg.test(\"NbodySimulator\")"
45+
- C:\projects\julia\bin\julia -e "Pkg.test(\"NBodySimulator\")"

src/NbodySimulator.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
module NbodySimulator
1+
__precompile__()
2+
3+
module NBodySimulator
24

35
using Reexport
46
@reexport using DiffEqBase, OrdinaryDiffEq, RecursiveArrayTools

0 commit comments

Comments
 (0)