Skip to content

Commit e0d5f09

Browse files
authored
Merge pull request #605 from JuliaArrays/tk/allow-failures-nightly
Allow failures on nightly.
2 parents 407c65f + 70aee00 commit e0d5f09

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ julia:
77
- 1.0
88
- 1.1
99
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: nightly
1013
notifications:
1114
email: false
1215
branches:

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
99

1010
[extras]
1111
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
12-
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1312
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1413

1514
[targets]
16-
test = ["InteractiveUtils", "SpecialFunctions", "Test"]
15+
test = ["InteractiveUtils", "Test"]

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ platform:
1010

1111
## uncomment the following lines to allow failures on nightly julia
1212
## (tests will run but not make your overall status red)
13-
#matrix:
14-
# allow_failures:
15-
# - julia_version: latest
13+
matrix:
14+
allow_failures:
15+
- julia_version: latest
1616

1717
branches:
1818
only:

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using StaticArrays, Test, Random, LinearAlgebra, SpecialFunctions
1+
using StaticArrays, Test, Random, LinearAlgebra
22
using InteractiveUtils
33

44
# Allow no new ambiguities (see #18), unless you fix some old ones first!

0 commit comments

Comments
 (0)