Skip to content

Commit 700675b

Browse files
committed
Disable some tests
1 parent 3204661 commit 700675b

15 files changed

+97
-97
lines changed

test/generic/AbsSeries-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ end
9090

9191
@test isa(l, Generic.AbsSeries)
9292

93-
@test x in [x, y]
94-
@test x in [y, x]
95-
@test !(x in [y])
96-
97-
@test x in keys(Dict(x => 1))
98-
@test !(y in keys(Dict(x => 1)))
93+
# @test x in [x, y]
94+
# @test x in [y, x]
95+
# @test !(x in [y])
96+
#
97+
# @test x in keys(Dict(x => 1))
98+
# @test !(y in keys(Dict(x => 1)))
9999

100100
R, x = power_series_ring(ZZ, 30, "x", model=:capped_absolute)
101101
S, x = power_series_ring(ZZ, 30, "x", model=:capped_absolute)

test/generic/FactoredFraction-test.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,11 @@ end
219219
a = TT(1)
220220
b = T(2)
221221

222-
@test a in [a, b]
223-
@test a in [b, a]
224-
@test !(a in [b])
225-
@test a in keys(Dict(a => 1))
226-
@test !(b in keys(Dict(a => 1)))
222+
# @test a in [a, b]
223+
# @test a in [b, a]
224+
# @test !(a in [b])
225+
# @test a in keys(Dict(a => 1))
226+
# @test !(b in keys(Dict(a => 1)))
227227
end
228228

229229
@testset "Generic.FactoredFracFieldElem.printing" begin

test/generic/Fraction-test.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
b = T(2)
4747
@test is_perfect(TT)
4848

49-
@test a in [a, b]
50-
@test a in [b, a]
51-
@test !(a in [b])
52-
@test a in keys(Dict(a => 1))
53-
@test !(b in keys(Dict(a => 1)))
49+
# @test a in [a, b]
50+
# @test a in [b, a]
51+
# @test !(a in [b])
52+
# @test a in keys(Dict(a => 1))
53+
# @test !(b in keys(Dict(a => 1)))
5454
end
5555

5656
@testset "Generic.FracFieldElem.printing" begin

test/generic/FreeAssociativeAlgebra-test.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@
126126
@test collect(exponent_words(varlist[1] + 1)) == [Int[1], Int[]]
127127
@test isone(varlist[1]^0)
128128

129-
_, varlist = polynomial_ring(QQ, var_names)
130-
y = varlist[1]
131-
@test x in [x, y]
132-
@test x in [y, x]
133-
@test !(x in [y])
134-
@test x in keys(Dict(x => 1))
135-
@test !(y in keys(Dict(x => 1)))
129+
# _, varlist = polynomial_ring(QQ, var_names)
130+
# y = varlist[1]
131+
# @test x in [x, y]
132+
# @test x in [y, x]
133+
# @test !(x in [y])
134+
# @test x in keys(Dict(x => 1))
135+
# @test !(y in keys(Dict(x => 1)))
136136
end
137137
end
138138

test/generic/FunctionField-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,12 @@ P2 = [(x2 + 1)*z2 + (x2 + 2), z2 + (x2 + 1)//(x2 + 2), z2^2 + 3z2 + 1,
7575

7676
@test var(S1) == :y1
7777

78-
@test y1 in [y1, y2]
79-
@test y1 in [y2, y1]
80-
@test !(y1 in [y2])
81-
82-
@test y1 in keys(Dict(y1 => 1))
83-
@test !(y2 in keys(Dict(y1 => 1)))
78+
# @test y1 in [y1, y2]
79+
# @test y1 in [y2, y1]
80+
# @test !(y1 in [y2])
81+
#
82+
# @test y1 in keys(Dict(y1 => 1))
83+
# @test !(y2 in keys(Dict(y1 => 1)))
8484
end
8585

8686
@testset "Generic.FunctionField.printing" begin

test/generic/LaurentSeries-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ end
9999

100100
@test isa(l, Generic.LaurentSeriesElem)
101101

102-
@test x in [x, y]
103-
@test x in [y, x]
104-
@test !(x in [y])
105-
106-
@test x in keys(Dict(x => 1))
107-
@test !(y in keys(Dict(x => 1)))
102+
# @test x in [x, y]
103+
# @test x in [y, x]
104+
# @test !(x in [y])
105+
#
106+
# @test x in keys(Dict(x => 1))
107+
# @test !(y in keys(Dict(x => 1)))
108108

109109
R, x = laurent_series_ring(ZZ, 30, "x")
110110
RR, x = laurent_series_ring(ZZ, 30, "x")

test/generic/MPoly-test.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@
8484

8585
@test f1 == f3
8686

87-
_, varlist = polynomial_ring(QQ, var_names)
88-
y = varlist[1]
89-
@test x in [x, y]
90-
@test x in [y, x]
91-
@test !(x in [y])
92-
@test x in keys(Dict(x => 1))
93-
@test !(y in keys(Dict(x => 1)))
87+
# _, varlist = polynomial_ring(QQ, var_names)
88+
# y = varlist[1]
89+
# @test x in [x, y]
90+
# @test x in [y, x]
91+
# @test !(x in [y])
92+
# @test x in keys(Dict(x => 1))
93+
# @test !(y in keys(Dict(x => 1)))
9494
end
9595

9696
R1, (x, y) = QQ["x", "y"]

test/generic/Matrix-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -311,12 +311,12 @@ end
311311
x = zero_matrix(R, 2, 2)
312312
y = zero_matrix(ZZ, 2, 3)
313313

314-
@test x in [x, y]
315-
@test x in [y, x]
316-
@test !(x in [y])
317-
318-
@test x in keys(Dict(x => 1))
319-
@test !(y in keys(Dict(x => 1)))
314+
# @test x in [x, y]
315+
# @test x in [y, x]
316+
# @test !(x in [y])
317+
#
318+
# @test x in keys(Dict(x => 1))
319+
# @test !(y in keys(Dict(x => 1)))
320320

321321
# Test creation from AbstractArray without setindex!
322322
A = MyTestMatrix(BigInt(3), 2)

test/generic/Poly-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ end
9696

9797
@test isa(n, PolyRingElem)
9898

99-
@test x in [x, y]
100-
@test x in [y, x]
101-
@test !(x in [y])
102-
103-
@test x in keys(Dict(x => 1))
104-
@test !(y in keys(Dict(x => 1)))
99+
# @test x in [x, y]
100+
# @test x in [y, x]
101+
# @test !(x in [y])
102+
#
103+
# @test x in keys(Dict(x => 1))
104+
# @test !(y in keys(Dict(x => 1)))
105105
end
106106

107107
@testset "Generic.Poly.constructors.varname" begin

test/generic/PuiseuxSeries-test.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ end
9393

9494
@test isa(l, Generic.PuiseuxSeriesElem)
9595

96-
@test x in [x, y]
97-
@test x in [y, x]
98-
@test !(x in [y])
99-
100-
@test x in keys(Dict(x => 1))
101-
@test !(y in keys(Dict(x => 1)))
96+
# @test x in [x, y]
97+
# @test x in [y, x]
98+
# @test !(x in [y])
99+
#
100+
# @test x in keys(Dict(x => 1))
101+
# @test !(y in keys(Dict(x => 1)))
102102
end
103103

104104
@testset "Generic.PuiseuxSeries.printing" begin

0 commit comments

Comments
 (0)