diff --git a/pyperformance/cli.py b/pyperformance/cli.py index 34544a11..9f12ef03 100644 --- a/pyperformance/cli.py +++ b/pyperformance/cli.py @@ -252,6 +252,9 @@ def parse_entry(o, s): # Filter out any benchmarks that can't be run on the Python version we're running if this_python_version in bench.python: selected.append(bench) + else: + logging.warning("Benchmark: %s is being skipped because Python version required is %s but found %s", + bench.spec.name, bench.python, this_python_version) return selected