Skip to content

Commit af904cd

Browse files
committed
remove core test tags
1 parent 2e4490e commit af904cd

17 files changed

+20
-20
lines changed

test/core-test/block_diagonal_form.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Block Diagonal Form" tags=[:core] begin
1+
@testitem "Block Diagonal Form" begin
22
# Block Diagonal Form
33
N = 20
44
Δ = 0

test/core-test/correlations_and_spectrum.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Correlations and Spectrum" tags=[:core] begin
1+
@testitem "Correlations and Spectrum" begin
22
N = 10
33
Id = qeye(N)
44
a = destroy(N)

test/core-test/dynamical-shifted-fock.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Dynamical Shifted Fock" tags=[:core] begin
1+
@testitem "Dynamical Shifted Fock" begin
22
F = 3
33
Δ = 0.25
44
κ = 1

test/core-test/dynamical_fock_dimension_mesolve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### DYNAMICAL FOCK DIMENSION ###
2-
@testitem "Dynamical Fock Dimension" tags=[:core] begin
2+
@testitem "Dynamical Fock Dimension" begin
33
F, Δ, κ = 5, 0.25, 1
44
t_l = range(0, 15, length = 100)
55

test/core-test/eigenvalues_and_operators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Eigenvalues and Operators" tags=[:core] begin
1+
@testitem "Eigenvalues and Operators" begin
22
σx = sigmax()
33
result = eigenstates(σx, sparse = false)
44
λd, ψd, Td = result

test/core-test/entropy_and_metric.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "entropy" tags=[:core] begin
1+
@testitem "entropy" begin
22
base = 2
33
λ = rand()
44
ψ = rand_ket(10)
@@ -51,7 +51,7 @@
5151
end
5252
end
5353

54-
@testitem "entanglement and concurrence" tags=[:core] begin
54+
@testitem "entanglement and concurrence" begin
5555
# bell state
5656
ψb = bell_state(Val(1), Val(0))
5757
ρb = ket2dm(ψb)
@@ -87,7 +87,7 @@ end
8787
end
8888
end
8989

90-
@testitem "trace and Hilbert-Schmidt distance" tags=[:core] begin
90+
@testitem "trace and Hilbert-Schmidt distance" begin
9191
ψz0 = basis(2, 0)
9292
ψz1 = basis(2, 1)
9393
ρz0 = to_sparse(ket2dm(ψz0))
@@ -117,7 +117,7 @@ end
117117
end
118118
end
119119

120-
@testitem "fidelity, Bures metric, and Hellinger distance" tags=[:core] begin
120+
@testitem "fidelity, Bures metric, and Hellinger distance" begin
121121
M0 = rand_dm(5)
122122
ψ1 = rand_ket(5)
123123
ψ2 = rand_ket(5)

test/core-test/generalized_master_equation.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Generalized Master Equation" tags=[:core] default_imports=false begin
1+
@testitem "Generalized Master Equation" default_imports=false begin
22
using Test
33
using QuantumToolbox
44
import LinearAlgebra: triu

test/core-test/low_rank_dynamics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Low Rank Dynamics" tags=[:core] default_imports=false begin
1+
@testitem "Low Rank Dynamics" default_imports=false begin
22
using Test
33
using QuantumToolbox
44
import LinearAlgebra: Diagonal, mul!

test/core-test/negativity_and_partial_transpose.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Negativity and Partial Transpose" tags=[:core] begin
1+
@testitem "Negativity and Partial Transpose" begin
22
@testset "negativity" begin
33
rho = (1 / 40) * Qobj(
44
[

test/core-test/progress_bar.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@testitem "Progress Bar" tags=[:core] begin
1+
@testitem "Progress Bar" begin
22
bar_width = 30
33
strLength = 67 + bar_width # including "\r" in the beginning of the string
44
prog = ProgressBar(bar_width, enable = true, bar_width = bar_width, interval = 0.2)

0 commit comments

Comments
 (0)