From 01b2003118e06e7673a87a9f9829bd25a4af6a0f Mon Sep 17 00:00:00 2001 From: Michael Reed <18372368+chakravala@users.noreply.github.com> Date: Wed, 22 Apr 2020 00:59:24 -0400 Subject: [PATCH] removed Reduce from testing --- .travis.yml | 1 + Project.toml | 2 -- test/runtests.jl | 12 ++++-------- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index e35f292..9edecfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: julia os: - linux - osx + - windows julia: - 1.0 - 1.4 diff --git a/Project.toml b/Project.toml index c7e13af..c27cfcc 100644 --- a/Project.toml +++ b/Project.toml @@ -9,14 +9,12 @@ ComputedFieldTypes = "459fdd68-db75-56b8-8c15-d717a790f88e" DirectSum = "22fd7b30-a8c0-5bf2-aabe-97783860d07c" Leibniz = "edad4870-8a01-11e9-2d75-8f02e448fc59" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" -Reduce = "93e0c654-6965-5f22-aba9-9c1ae6b3c259" Requires = "ae029012-a4dd-5104-9daa-d747884805df" StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] julia = "1" -Reduce = "1.2" Leibniz = "0.0.5" DirectSum = "0.5.3" AbstractTensors = "0.4.3" diff --git a/test/runtests.jl b/test/runtests.jl index f776cc1..b055218 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,9 +1,4 @@ -if VERSION ≤ v"1.2" - using Grassmann -else - using Reduce,Grassmann -end -using Test +using Grassmann, Test # write your own tests here @test (@basis "++++" s e; e124 * e23 == e134) @@ -15,9 +10,10 @@ using Test !Sys.iswindows() && @test Λ(62).v32a87Ng == -1Λ(62).v2378agN @test Λ.V3 == Λ.C3' @test Λ(14) + Λ(14)' == Λ(Manifold(14)+Manifold(14)') -if VERSION > v"1.2" + +#= Reduce @test ((a,b) = (:a*Λ(2).v1 + :b*Λ(2).v2,:c*Λ(2).v1 + :d*Λ(2).v2); Algebra.:+(a∧b,a⋅b)==a*b) -end +=# include("issuestests.jl") include("generictests.jl")