Modify tests

pull/1831/head
Nikhil Parasaram 10 months ago
parent 44b0e47ddd
commit 53f8f03916
  1. 1
      tests/integration_tests/parallel_test.py
  2. 2
      tox.ini

@ -12,5 +12,6 @@ def test_parallel():
processes = [Popen(program, stdout=PIPE, shell=True) for i in range(30)]
for p in processes:
out, err = p.communicate()
print(out)
json_output = json.loads(out.decode("utf-8"))
assert json_output["success"] == True

@ -1,5 +1,5 @@
[tox]
envlist = python3.9, python3.10
envlist = python3.7, python3.9, python3.10
[testenv]
deps =

Loading…
Cancel
Save