Skip to content

Commit

Permalink
Reduced size of test_wavedecomposition
Browse files Browse the repository at this point in the history
In order to speed up our CI pipeline,
PyLops#285 suggested
to reduce the size of a number of tests, test_wavedecomposition
being one of them. The tests are now running with a smaller
input data.
  • Loading branch information
mrava87 committed Dec 31, 2021
1 parent 1fc3a69 commit fc68192
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pytests/test_wavedecomposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"ny": 11,
"ot": 0,
"dt": 0.004,
"nt": 50,
"nt": 30,
"f0": 40,
}

Expand All @@ -32,10 +32,10 @@
# separation params
vel_sep = 1000.0 # velocity at separation level
rho_sep = 1000.0 # density at separation level
critical = 0.9
ntaper = 41
nfftf = 2 ** 8
nfftk = 2 ** 7
critical = 0.99
ntaper = 5
nfftf = 2 ** 6
nfftk = 2 ** 6

# axes and wavelet
t, t2, x, y = makeaxis(PAR)
Expand Down

0 comments on commit fc68192

Please sign in to comment.