Skip to content

Commit fa9dbaa

Browse files
test
1 parent 05289bf commit fa9dbaa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
jobs:
88
lint:
99
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
1012
steps:
1113
- uses: actions/checkout@v2
1214
- uses: actions/setup-python@v1

run.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22

3-
import argparse
43
import sys
4+
import argparse
55
from typing import List, Tuple
66

77
import testcases
@@ -33,9 +33,7 @@ def get_args():
3333
default=False,
3434
help="turn on debug logs",
3535
)
36-
parser.add_argument(
37-
"-s", "--server", help="server implementations (comma-separated)"
38-
)
36+
parser.add_argument("-s", "--server", help="server implementations (comma-separated)")
3937
parser.add_argument(
4038
"-c", "--client", help="client implementations (comma-separated)"
4139
)

0 commit comments

Comments
 (0)