Skip to content

Commit f2adf75

Browse files
committed
updated testing
1 parent 80a81b7 commit f2adf75

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ git:
1313

1414
## uncomment the following lines to allow failures on nightly julia
1515
## (tests will run but not make your overall status red)
16-
#matrix:
17-
# allow_failures:
18-
# - julia: nightly
16+
matrix:
17+
allow_failures:
18+
- julia: nightly
1919

2020
## uncomment and modify the following lines to manually install system packages
2121
#addons:
@@ -26,10 +26,10 @@ git:
2626
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
2727

2828
## uncomment the following lines to override the default test script
29-
#script:
30-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("ReduceAlgebra"); Pkg.test("ReduceAlgebra"; coverage=true)'
31-
after_success:
29+
script:
30+
- julia -e 'Pkg.clone(pwd()); Pkg.build("ReduceAlgebra"); Pkg.test("ReduceAlgebra")'
31+
#after_success:
3232
# push coverage results to Coveralls
33-
- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
33+
#- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3434
# push coverage results to Codecov
35-
- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
35+
#- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66

77
*Meta-package for [Reduce.jl](https://github.com/chakravala/Reduce.jl) and [External Packages](https://github.com/JuliaReducePkg)*
88

9-
[![Build Status](https://travis-ci.org/chakravala/ReduceAlgebra.jl.svg?branch=master)](https://travis-ci.org/chakravala/ReduceAlgebra.jl)
10-
[![Coverage Status](https://coveralls.io/repos/chakravala/ReduceAlgebra.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/chakravala/ReduceAlgebra.jl?branch=master)
11-
[![codecov.io](http://codecov.io/github/chakravala/ReduceAlgebra.jl/coverage.svg?branch=master)](http://codecov.io/github/chakravala/ReduceAlgebra.jl?branch=master)
9+
[![Build Status](https://travis-ci.org/JuliaReducePkg/ReduceAlgebra.jl.svg?branch=master)](https://travis-ci.org/JuliaReducePkg/ReduceAlgebra.jl)
10+
[![Build status](https://ci.appveyor.com/api/projects/status/rsk2jdjwnl4spd7d?svg=true)](https://ci.appveyor.com/project/chakravala/reducealgebra-jl)
1211
[![Join the chat at gitter](https://badges.gitter.im/Reduce-jl/Lobby.svg)](https://gitter.im/Reduce-jl/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1312

1413
The upstream [REDUCE](http://www.reduce-algebra.com) software was originally created by Anthony C. Hearn (currently maintained on [SourceForge](https://sourceforge.net/p/reduce-algebra/)), the Julia packages included with this repository are based on the symbolic parser generator [Reduce.jl](https://github.com/chakravala/Reduce.jl) created by Michael Reed, which extends the Julia language with REDUCE functionality.

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ environment:
77

88
## uncomment the following lines to allow failures on nightly julia
99
## (tests will run but not make your overall status red)
10-
#matrix:
11-
# allow_failures:
12-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13-
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
10+
matrix:
11+
allow_failures:
12+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
13+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
1414

1515
branches:
1616
only:

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ using ReduceAlgebra
22
using Base.Test
33

44
# write your own tests here
5-
@test 1 == 2
5+
@test (Pkg.test("Reduce"); true)
6+
@test (Pkg.test("ReduceLinAlg"); true)

0 commit comments

Comments
 (0)