From 9c9ebc4eb6552e33c33dae9cbc38841110ea3ae0 Mon Sep 17 00:00:00 2001 From: Anson Date: Wed, 20 Jan 2021 18:00:59 -0700 Subject: [PATCH] add LTS to test versions --- .gitlab-ci.yml | 8 +++++--- test/runtests.jl | 1 - 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 783674a..5008ebc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,10 +36,12 @@ # image: julia:0.7 # <<: *test_definition -# test:1.0: -# image: julia:1.0 -# <<: *test_definition +# Current LTS Release +test:1.0.5: + image: julia:1.0 + <<: *test_definition +# Current Stable Release test:1.5: image: julia:1.5 <<: *test_definition diff --git a/test/runtests.jl b/test/runtests.jl index ad6e160..b86de1d 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -9,5 +9,4 @@ import AstroHelper: Quaternion @test Quaternion([0 0 0], 0) == Quaternion(0, 0, 0, 1) @test Quaternion([1 -2 2], (-2 * pi / 3)) ≈ Quaternion([-sqrt(3) / 6, sqrt(3) / 3, -sqrt(3) / 3, 1 / 2]) @test_throws ErrorException Quaternion(1, 2, 3, 4) - @test false end \ No newline at end of file