Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"setuptools",
"coverage>=6.0",
]

Expand Down
6 changes: 3 additions & 3 deletions testflo/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import os
import sys
import shutil
import time
import warnings
import traceback
Expand All @@ -23,11 +24,10 @@
from testflo.devnull import DevNull


from distutils import spawn
mpirun_exe = None
if spawn.find_executable("mpirun") is not None:
if shutil.which("mpirun") is not None:
mpirun_exe = "mpirun"
elif spawn.find_executable("mpiexec") is not None:
elif shutil.which("mpiexec") is not None:
mpirun_exe = "mpiexec"


Expand Down
1 change: 0 additions & 1 deletion testflo/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

from argparse import ArgumentParser, _AppendAction

from testflo.cover import start_coverage, stop_coverage

_store = {}

Expand Down