Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# pre-commit run --files src/**/*.py
- name: Test with pytest
run: |
pytest tests/pre_3_10 --cov=src --cov-report=xml --splits 3 --group ${{ matrix.group }}
pytest tests/pre_3_10 --cov=src --cov-report=xml --splits 3 --group ${{ matrix.group }} --durations=50
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3

Expand Down Expand Up @@ -81,6 +81,6 @@ jobs:
# pre-commit run --files src/vip_hci/objects/*.py
- name: Test with pytest
run: |
pytest tests/post_3_10 --cov=src/vpi_hci/objects/ --cov-report=xml
pytest tests/post_3_10 --cov=src/vpi_hci/objects/ --cov-report=xml --durations=50
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
2 changes: 1 addition & 1 deletion tests/pre_3_10/test_fm_negfc_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_algos(
algo_options["radius_int"] = res0[0][0] - 2 * ds.fwhm
algo_options["asize"] = 4 * ds.fwhm
algo_options["delta_rot"] = 1
if pca_algo == pca:
if pca_algo == median_sub:
# just test it once because very slow
sp_unc = speckle_noise_uncertainty(
cube_emp,
Expand Down