Skip to content

Commit 2772a5a

Browse files
committed
check reason for test failure
1 parent fc2fa84 commit 2772a5a

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Jenkinsfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
// Change these to automatically skip steps
1616
def runtests_unit = 0
1717
def runtests_regress = 0
18-
def runtests_gmosls = 1 // 1 to enable
19-
def runtests_slow = 1
20-
def runtests_f2 = 1
21-
def runtests_niri = 1
22-
def runtests_gsaoi = 1
23-
def runtests_gnirs = 1
18+
def runtests_gmosls = 0 // 1 to enable
19+
def runtests_slow = 0
20+
def runtests_f2 = 0
21+
def runtests_niri = 0
22+
def runtests_gsaoi = 0
23+
def runtests_gnirs = 0
2424
def runtests_wavecal = 0
2525
def runtests_ghost = 1
26-
def runtests_gmos = 1
27-
def runtests_ghost_integ = 1
26+
def runtests_gmos = 0
27+
def runtests_ghost_integ = 0
2828

2929
pipeline {
3030

gempy/library/peak_finding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ def find_wavelet_peaks(data, widths=None, mask=None, variance=None, min_snr=1, m
680680
# approximately that factor.
681681
snr = np.divide(wavelet_transformed_data[0], np.sqrt(variance),
682682
out=np.zeros_like(data, dtype=np.float32),
683-
where=variance > 0) * np.sqrt(2)
683+
where=variance > 0) # * np.sqrt(2)
684684

685685
peaks = [x for x in peaks if snr[x] > min_snr]
686686

0 commit comments

Comments
 (0)