Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

very minor fixes #9

Merged
merged 2 commits into from
Apr 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.jl.mem
/deps/deps.jl
/docs/build
/Manifest.toml
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ julia:
- 1.1
- 1.2
- 1.3
- 1.4
- nightly
notifications:
email: false
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "PushVectors"
uuid = "36b54c61-190e-5a5f-82d5-6f0a962d7362"
authors = ["Tamas K. Papp <[email protected]>"]
version = "0.2.1"
version = "0.2.2"

[compat]
julia = "^1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "BenchmarkTools"]

[compat]
julia = "^1"
2 changes: 1 addition & 1 deletion test/coverage/coverage.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# only push coverage from one bot
get(ENV, "TRAVIS_OS_NAME", nothing) == "linux" || exit(0)
get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.1" || exit(0)
get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.4" || exit(0)

using Coverage

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ end
@test T_PushVector ≤ T_Vector
@info "benchmarks" A_PushVector A_Vector append!_ratio = round(A_PushVector / A_Vector; digits = 2)
# here just ensure that it is not much worse, testing is noisy
# @test A_PushVector ≤ A_Vector * 1.1
# @test A_PushVector ≤ A_Vector * 1.5
end