Skip to content

Commit 37e3c38

Browse files
committed
try all CI for success?
1 parent 4be17da commit 37e3c38

3 files changed

Lines changed: 30 additions & 37 deletions

File tree

.travis.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22
language: julia
33

44
os:
5-
# - linux
5+
- linux
66
- osx
77
julia:
88
- 1.0
9-
# - 1.1
10-
# - 1.2
11-
# - 1.3
12-
# - nightly
13-
# env:
14-
# - JULIA_NUM_THREADS=1
15-
# - JULIA_NUM_THREADS=4
9+
- 1.1
10+
- 1.2
11+
- 1.3
12+
- nightly
13+
env:
14+
- JULIA_NUM_THREADS=1
15+
- JULIA_NUM_THREADS=4
1616

1717
notifications:
1818
email: false
1919

20-
# matrix:
21-
# allow_failures:
22-
# - julia: nightly
23-
#
24-
# codecov: true
25-
# coveralls: true
26-
#
27-
# jobs:
28-
# include:
29-
# - stage: "Documentation"
30-
# julia: 1.1
31-
# os: linux
32-
# script:
33-
# - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
34-
# Pkg.instantiate()'
35-
# - julia --project=docs/ docs/make.jl
36-
# after_success: skip
20+
matrix:
21+
allow_failures:
22+
- julia: nightly
23+
24+
codecov: true
25+
coveralls: true
26+
27+
jobs:
28+
include:
29+
- stage: "Documentation"
30+
julia: 1.1
31+
os: linux
32+
script:
33+
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
34+
Pkg.instantiate()'
35+
- julia --project=docs/ docs/make.jl
36+
after_success: skip

appveyor.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
environment:
22
matrix:
33
- julia_version: 1.0
4-
# - julia_version: 1.1
5-
# - julia_version: 1.2
6-
# - julia_version: 1.3
7-
# - julia_version: nightly
4+
- julia_version: 1.1
5+
- julia_version: 1.2
6+
- julia_version: 1.3
7+
- julia_version: nightly
88

99
platform:
1010
- x86 # 32-bit
11-
# - x64 # 64-bit
11+
- x64 # 64-bit
1212

1313
# # Uncomment the following lines to allow failures on nightly julia
1414
# # (tests will run but not make your overall status red)

test/tensors.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -200,13 +200,6 @@ for (G,V) in ((Trivial, Vtr), (ℤ₂, Vℤ₂), (ℤ₃, Vℤ₃), (U₁, VU₁
200200
D, V = eigen(t, (1,3), (2,4))
201201
VdV = V'*V
202202
VdV = (VdV + VdV')/2
203-
if !isposdef(VdV)
204-
@show ishermitian(VdV)
205-
S, U = eigh(VdV)
206-
for (c,b) in blocks(S)
207-
@show c, diag(b)
208-
end
209-
end
210203
@test isposdef(VdV)
211204
t2 = permuteind(t, (1,3), (2,4))
212205
@test t2*V V*D

0 commit comments

Comments
 (0)