From 6ab315638a884acca470e7526db4d271934dabe5 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 20 Sep 2021 12:51:52 -0400 Subject: [PATCH] fix(types): allow inference of list type in MyPy --- bin/run_tests.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bin/run_tests.py b/bin/run_tests.py index 4b56acf0..7eced4a7 100755 --- a/bin/run_tests.py +++ b/bin/run_tests.py @@ -16,10 +16,9 @@ if __name__ == "__main__": unit_test_args += ["--run-docker"] subprocess.run(unit_test_args, check=True) + xdist_test_args = ["-n", "2"] if sys.platform.startswith("linux") else [] + # run the integration tests - xdist_test_args = [] - if sys.platform.startswith("linux"): - xdist_test_args = ["-n", "2"] subprocess.run( [ sys.executable,