Skip to content

Commit 8bac874

Browse files
authored
fix: github action max parallel in one
1 parent 77c870b commit 8bac874

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: .github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: CI/CD
33
on: [pull_request, push, workflow_dispatch]
44

55
jobs:
6+
strategy:
7+
max-parallel: 1
68
test:
79
name: Test / OS ${{ matrix.os }} / Python ${{ matrix.python-version }}
810
strategy:

Diff for: tests/test_dummy.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
def test_dummy() -> None:
1111
# Test auth component
12-
assert True == True
12+
assert True
1313

1414

1515
def test_client_initialziation() -> None:
16-
client = supabase.Client("http://testwebsite.com", "atestapi")
16+
_ = supabase.Client("http://testwebsite.com", "atestapi")

0 commit comments

Comments
 (0)