Skip to content

Commit

Permalink
ci: Fix CI to skip another long test
Browse files Browse the repository at this point in the history
  • Loading branch information
alanwilter committed Sep 11, 2024
1 parent 6842e2d commit 0ba40af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
poetry install
- name: Run tests
run: poetry run pytest -k 'not test_main_mapping_example_dir_relative and not test_main_mapping_example_dir'
run: poetry run pytest -k 'not test_main_mapping_example_dir_relative and not test_main_mapping_example_dir and not test_process_dcm'

- name: Check if version bump is needed
id: check
Expand Down
1 change: 1 addition & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ def test_process_and_save_csv_no_changes(csv_data):
assert not backup_file.exists(), f"Did not expect backup file {backup_file} to exist"


# skip this test for CI
def test_process_dcm(temp_output_dir, input_dir2, mocker):
mock_secho = mocker.patch("typer.secho")
new_patient_key, original_patient_key = process_dcm(
Expand Down

0 comments on commit 0ba40af

Please sign in to comment.