From fa9dbaa52af5e1e7f61c7952efce5627ba3de901 Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Sat, 22 Aug 2020 15:49:05 +0700 Subject: [PATCH] test --- .github/workflows/lint.yml | 2 ++ run.py | 6 ++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 57534b73..33a82610 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,6 +7,8 @@ on: jobs: lint: runs-on: ubuntu-latest + strategy: + fail-fast: false steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 diff --git a/run.py b/run.py index cad1cff7..69b90858 100755 --- a/run.py +++ b/run.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 -import argparse import sys +import argparse from typing import List, Tuple import testcases @@ -33,9 +33,7 @@ def get_args(): default=False, help="turn on debug logs", ) - parser.add_argument( - "-s", "--server", help="server implementations (comma-separated)" - ) + parser.add_argument("-s", "--server", help="server implementations (comma-separated)") parser.add_argument( "-c", "--client", help="client implementations (comma-separated)" )