diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index da48dc24330b..2d300c18a3cc 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -20,6 +20,7 @@ jobs: name: Test runs-on: ubuntu-latest strategy: + fail-fast: false matrix: python-version: ['3.8', '3.12'] env: diff --git a/test/integration/test_recalculate_user_disk_usage.py b/test/integration/test_recalculate_user_disk_usage.py index b891e46fb7a0..c23d12c77757 100644 --- a/test/integration/test_recalculate_user_disk_usage.py +++ b/test/integration/test_recalculate_user_disk_usage.py @@ -37,7 +37,7 @@ def test_recalculate_user_disk_usage(self): assert current_usage["total_disk_usage"] == 0 size = 100 history_id = self.dataset_populator.new_history() - hda_id = self.dataset_populator.new_dataset(history_id, content=f"{'0'*size}", wait=True)["id"] + hda_id = self.dataset_populator.new_dataset(history_id, content=f"{'0' * size}", wait=True)["id"] expected_usage = size + 1 # +1 for the new line character in the dataset # The usage should be the total of the datasets current_usage = self.dataset_populator.get_usage_for(None)