From b25d01450e250aa8518d30095ed04a2031902a4c Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Fri, 2 Feb 2024 01:05:58 +0000 Subject: [PATCH] Remove parallel test --- tests/integration_tests/parallel_test.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 tests/integration_tests/parallel_test.py diff --git a/tests/integration_tests/parallel_test.py b/tests/integration_tests/parallel_test.py deleted file mode 100644 index c72cc4f3..00000000 --- a/tests/integration_tests/parallel_test.py +++ /dev/null @@ -1,16 +0,0 @@ -from subprocess import Popen, PIPE -from tests import PROJECT_DIR, TESTDATA -import json - -MYTH = str(PROJECT_DIR / "myth") - - -def test_parallel(): - - test_file = str(TESTDATA / "input_contracts" / "origin.sol") - program = f"python3 {MYTH} a {test_file} --solv 0.5.0 -o json" - processes = [Popen(program, stdout=PIPE, shell=True) for i in range(4)] - for p in processes: - out, err = p.communicate() - json_output = json.loads(out.decode("utf-8")) - assert json_output["success"] == True