Skip to content

Commit

Permalink
remove tests for +/-
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Jul 2, 2019
1 parent 9b1b461 commit 93e2e4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ os:
- osx
julia:
- 1.0
- nightly
- 1.1
# - nightly
matrix:
allow_failures:
- julia: nightly
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MIDI"
uuid = "f57c4921-e30c-5f49-b073-3f2f2ada663e"
repo = "https://github.com/JuliaMusic/MIDI.jl.git"
version = "1.4.1"
version = "1.4.2"

[deps]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
8 changes: 0 additions & 8 deletions test/note.jl
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
@testset "Note" begin
@testset "it should correctly get the pitch of a note after we perform basic arithmetic to it" begin
@test (MIDI.Note(60, 96, 0, 5) + 2).pitch == 62
@test (MIDI.Note(60, 96, 0, 5) - 2).pitch == 58
@test (MIDI.Note(60, 96, 0, 5) + 0).pitch == 60
end
end

cd(@__DIR__)

@testset "Notes" begin
Expand Down

2 comments on commit 93e2e4f

@Datseris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/1732

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.2 -m "<description of version>" 93e2e4f26baaa1dc8cc01ca34c9caa5a0a9624c8
git push origin v1.4.2

Please sign in to comment.