Skip to content

Commit 58ab6cd

Browse files
committed
Remove coveralls and update CI
1 parent a71ad37 commit 58ab6cd

File tree

4 files changed

+5
-15
lines changed

4 files changed

+5
-15
lines changed

.travis.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Documentation: http://docs.travis-ci.com/user/languages/julia/
22
language: julia
3+
codecov: true
34
os:
45
- linux
56
# - osx
67
julia:
78
- 1.0
8-
- 1.1
9-
- 1.2
10-
- 1.3
11-
- 1.4
9+
- 1
1210
- nightly
1311

1412
matrix:
@@ -17,9 +15,3 @@ matrix:
1715

1816
notifications:
1917
email: false
20-
21-
after_success:
22-
# push coverage results to Coveralls
23-
- julia -e 'cd(Pkg.dir("DynamicPolynomials")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
24-
# push coverage results to Codecov
25-
- julia -e 'cd(Pkg.dir("DynamicPolynomials")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
| **Build Status** | **References to cite** |
44
|:----------------:|:----------------------:|
55
| [![Build Status][build-img]][build-url] [![Build Status][winbuild-img]][winbuild-url] | [![DOI][zenodo-img]][zenodo-url] |
6-
| [![Coveralls branch][coveralls-img]][coveralls-url] [![Codecov branch][codecov-img]][codecov-url] | |
6+
| [![Codecov branch][codecov-img]][codecov-url] | |
77

88
Sparse dynamic representation of multivariate polynomials that can be used with [MultivariatePolynomials](https://github.com/JuliaAlgebra/MultivariatePolynomials.jl) (see the documentation there for more information).
99
Both commutative and non-commutative variables are supported.
@@ -49,8 +49,6 @@ Therefore, this order cannot be used for substitution, even as a default (see [h
4949
[build-url]: https://travis-ci.org/JuliaAlgebra/DynamicPolynomials.jl
5050
[winbuild-img]: https://ci.appveyor.com/api/projects/status/wu5dnoq4x3jvjft8?svg=true
5151
[winbuild-url]: https://ci.appveyor.com/project/blegat/dynamicpolynomials-jl
52-
[coveralls-img]: https://coveralls.io/repos/github/JuliaAlgebra/DynamicPolynomials.jl/badge.svg?branch=master
53-
[coveralls-url]: https://coveralls.io/github/JuliaAlgebra/DynamicPolynomials.jl?branch=master
5452
[codecov-img]: http://codecov.io/github/JuliaAlgebra/DynamicPolynomials.jl/coverage.svg?branch=master
5553
[codecov-url]: http://codecov.io/github/JuliaAlgebra/DynamicPolynomials.jl?branch=master
5654

appveyor.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
- julia_version: 1.3
5-
- julia_version: 1.4
4+
- julia_version: 1
65
- julia_version: latest
76

87
platform:

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ using LinearAlgebra
1313
end
1414

1515
@testset "Issue #71" begin
16+
@ncpolyvar x y
1617
@test x^0 * y == y * x^0
1718
end
1819

0 commit comments

Comments
 (0)