Skip to content

Commit

Permalink
Don't fail-fast in lint GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 10, 2023
1 parent d8e85af commit 0b6bd9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.12']
env:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_recalculate_user_disk_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0b6bd9c

Please sign in to comment.