Hang-resistant Python harness for running and validating VBA in desktop Excel
Project description
pyVBAharness
Run VBA in desktop Excel from Python, under a supervisor that enforces a deadline on every call.
Excel automation has three failure modes that ordinary error handling does not cover:
- A VBA runtime error opens a modal dialog and waits indefinitely.
Application.Runtakes no timeout parameter.- Excel created over COM is not a child process, so terminating the caller
leaves
EXCEL.EXErunning with the workbook open.
The harness addresses each one. VBA errors are trapped inside VBA and returned as data. Every command is issued from a supervisor process that holds no COM references, so it can always enforce a deadline. When a deadline expires, the Excel process the harness owns is terminated by recorded process ID.
from pyvbaharness import ExcelSession
with ExcelSession() as excel:
result = excel.run_vba("""
Public Function AddNums(ByVal a As Long, ByVal b As Long) As Long
AddNums = a + b
End Function
""", proc="AddNums", args=(20, 22))
result.outcome # 'passed'
result.value # 42
Requirements
- Windows.
- Desktop Excel. Tested against Microsoft 365 x64; 2016 and newer expected to work.
- Python 3.10 or newer. Tested on 3.14.
pywin32, installed as a dependency.
Trust access to the VBA project object model
Module injection goes through the VBA project object model, which Excel blocks by default. Enable it at:
File > Options > Trust Center > Trust Center Settings > Macro Settings
[x] Trust access to the VBA project object model
The first run fails with a message naming this setting if it is off. The setting is per Office application and per Windows user; enabling it for Excel does not affect Word, and enabling it for one account does not affect a service account. While enabled, any code running as that user can modify VBA projects, so it suits a development machine rather than a shared server.
Run python -m pyvbaharness doctor to verify this and the rest of the
environment.
Install
pip install pyvbaharness
Optional extras: pyvbaharness[fuzz] adds Hypothesis for property-based
testing. For development, clone and pip install -e ".[dev,fuzz]".
Running VBA
run_vba injects source as a module and calls one procedure from it,
creating an unsaved in-memory workbook if none is open. run_macro calls a
procedure that already exists in the workbook.
excel.run_vba(source, proc="Main", args=(1, 2), timeout=30)
excel.run_macro("Module1.Main", 1, 2, timeout=30)
Return values arrive as Python objects. Scalars, dates, and 1-D or 2-D
arrays convert directly; COM objects convert to a "<object:Range>" marker
so the run still completes.
PyVbaLog is injected into every workbook and collects output into
result.output. Debug.Print writes to an Immediate window nothing is
reading, and MsgBox opens a blocking dialog, so neither is usable under
automation.
result = excel.run_vba("""
Public Sub Main()
Dim i As Long
For i = 1 To 3
PyVbaLog "step " & i
Next i
End Sub
""")
result.output # ['step 1', 'step 2', 'step 3']
Single expressions can be evaluated without writing a procedure:
excel.eval("WorksheetFunction.Sum(1, 2, 3)") # 6.0
excel.eval('UCase$("abc")') # 'ABC'
Outcomes
Every run reports one of five outcomes. passed and vba-error describe
the VBA under test; the other three describe the harness or the environment
and say nothing about whether the code is correct.
| Outcome | Meaning |
|---|---|
passed |
The procedure ran to completion |
vba-error |
VBA raised an error, captured in result.error |
timeout |
The run exceeded its deadline; Excel was terminated |
modal-blocked |
A dialog requiring a human decision appeared; Excel was terminated |
runner-error |
The harness or a COM call failed around the run |
Errors
Errors are captured inside VBA, so no dialog opens. Injected source is
instrumented with Erl line numbers and a per-procedure handler, which
supplies the failing line and the call stack.
result = excel.run_vba("""
Public Sub Main()
Dim x As Long
x = 1
Err.Raise 513, "MyModule", "something went wrong"
End Sub
""")
result.outcome # 'vba-error'
result.error.number # 513
result.error.source # 'MyModule'
result.error.description # 'something went wrong'
result.error.line # 5
result.error.stack # [('PyVbaUserCode.Main', 5)]
For a nested failure, error.stack lists every frame the error passed
through, deepest first:
[('Helpers.Parse', 12), ('Model.Load', 40), ('Main.Run', 7)]
line_numbers=False injects source unmodified, leaving error.line and
error.stack empty. Instrumentation is skipped for sources that already
contain numeric line labels, and an explicit On Error statement takes
precedence from the point it appears.
Timeouts
Every command carries a deadline. On expiry the harness terminates its Excel
process, records the outcome as timeout, and starts a fresh instance for
the next call.
result = excel.run_vba("""
Public Sub Main()
Do
Loop
End Sub
""", timeout=5.0)
result.outcome # 'timeout'
For work of unpredictable duration, report progress from VBA and set
idle_timeout. Each report extends the deadline, so the run is terminated
only after it stops reporting.
result = excel.run_vba(source, proc="Recalculate",
idle_timeout=60,
on_progress=lambda fraction, message: ...)
Public Sub Recalculate()
For i = 1 To 10000
' ... work ...
PyVbaProgress i / 10000, "row " & i
Next i
End Sub
Workbooks and ranges
excel.open_workbook(r"C:\reports\model.xlsm", read_only=True)
excel.run_macro("Analysis.Recalculate", timeout=120)
rows = excel.read_range("Summary", "A1:D50")
excel.new_workbook()
excel.write_range("Sheet1", "A1", [[1, 2], [3, 4]])
excel.save_as(r"C:\out\result.xlsm")
Workbooks open read-only by default and close without saving unless
save_as is called. Range reads and writes transfer whole blocks in one COM
call. reset_sheets() clears all worksheets while keeping injected modules,
for use between tests.
Modules can be exported to and imported from .bas and .cls files:
excel.export_modules("vba/") # VBIDE export, for version control
excel.import_modules("vba/") # document modules are skipped
Testing
Zero-argument procedures named Test* are discovered and run individually.
PyVbaAssert and PyVbaAssertEqual produce structured failures; any other
error is reported with its number, line, and stack.
results = excel.run_tests("""
Public Sub TestMath()
PyVbaAssertEqual 4, 2 + 2
End Sub
Public Sub TestBroken()
PyVbaAssertEqual 5, 2 + 2, "arithmetic is broken"
End Sub
""")
for case in results:
print(case.name, case.passed, case.result.error)
A test that hangs is reported as timeout. The session recycles, the test
module is reinjected, and the remaining tests run. When recovery is not
possible, such as with auto_recycle=False, the remaining tests are
reported as not run.
pytest integration
Procedures in files named test_*.bas are collected as pytest items:
pytest tests/vba/
pytest -k Discount -v
pytest --junitxml=results.xml
Failures report the assertion message, error line, VBA stack, and any
PyVbaLog output. One auto-recycling session serves the run; under
pytest-xdist each worker process gets its own.
Coverage
excel.add_module("Model", source, coverage=True)
excel.run_tests(test_source)
report = excel.coverage_report()
report.percent # 87.5
report.modules["model"].missed # [42, 43, 51]
Coverage is opt-in per module because instrumented code runs slower. Hits accumulate across runs until the module is replaced.
Property-based testing
from pyvbaharness.properties import check_vba_function
check_vba_function(excel, source, "Discount",
check=lambda args, value: 0 <= value <= args[0])
Input strategies are derived from the parsed VBA signature. Hypothesis
shrinks failures to a minimal counterexample. Requires
pip install pyvbaharness[fuzz].
Batch execution
run_batch runs many calls in one COM round trip. Results are returned in
call order with the same detail as run_macro, including per-call errors
with line and stack.
results = excel.run_batch([
("Model.Score", (row, weight)) for row, weight in inputs
])
Measured against equivalent serial calls: 2.7x at 50 calls, 4.7x at 200, 9.9x at 3000, where per-call cost reaches 0.066 ms. Arguments must be scalars.
Parallel execution
SessionPool distributes work across several owned Excel instances. Each
member is a full session with its own process, watchdogs, and recovery, so a
hang recycles one member while the others continue.
from pyvbaharness import SessionPool
with SessionPool(4) as pool:
futures = [pool.run_vba(source, proc="Crunch", args=(n,))
for n in range(24)]
results = [f.result() for f in futures]
cases = pool.run_tests(suite_source, timeout=30) # sharded across members
future = pool.submit(lambda s: ( # multi-step flow
s.open_workbook(r"C:\data\model.xlsm"),
s.run_macro("Model.Recalculate", timeout=300),
s.read_range("Out", "A1:C10"),
)[-1])
Throughput on a 16-core machine with 120 ms tasks: 2.0x at two members, 3.6x
at four, 4.7x at six (benchmarks/output/pool-baseline-1.0.0.json). Each
member uses 150 to 300 MB of RAM. Compile checks remain serialized
machine-wide inside a pool because they drive the visible VBE, which is a
shared surface; hidden runs and range IO do not interfere with each other.
Compile checking
result = excel.compile_project(watch_seconds=15)
if result.outcome == "rejected":
print(result.dialog.message)
Excel is made visible for the duration of the check. A hidden Excel does not
surface the compile-error dialog, which would report a rejection as a pass.
A clean project usually returns in about a second: the VBE disables its
Compile command once compilation succeeds, and the harness watches for that
signal. An infrastructure-failure outcome means the check could not
complete and the result is unknown.
Source that calls PyVbaLog or the assertion helpers requires
compile_project(include_harness_support=True) so those names resolve as
they do at run time.
Command line
pyvbaharness doctor --live
pyvbaharness run My.bas --proc Main --arg 42
pyvbaharness check My.bas Other.cls
pyvbaharness check --workbook model.xlsm
python -m pyvbaharness <command> works identically.
doctor checks Excel, pywin32, the VBA project trust setting, and the VBE
error-trapping mode; "Break on All Errors" sends handled errors to the
debugger and stalls automation. --live additionally starts an owned Excel
and runs a smoke test.
Exit codes: 0 pass or accepted, 1 VBA failure or rejected compile, 2
infrastructure failure.
Dialog handling
A watcher thread scans the owned Excel process for dialogs while a run is in flight and applies a deliberately narrow policy:
| Dialog | Action |
|---|---|
| VBA runtime error | Dismissed with End |
| Informational (OK, or OK and Help only) | Dismissed with OK |
| Anything with a real choice (Yes/No, Cancel, Retry, Debug, Save) | Reported as modal-blocked; Excel terminated |
| Compile error, outside a compile check | Reported as modal-blocked; Excel terminated |
| Excel's own prompts, such as "save your changes?" | Reported as modal-blocked; Excel terminated |
Excel's own prompts are not classic Win32 dialogs. "Do you want to save your
changes?" is a NUIDialog whose controls are drawn inside a NetUI surface,
with no Win32 buttons to enumerate or click, so its text cannot be read and
it is never dismissed. It is detected by modality instead: a titled Excel
window is disabled for as long as something modal owns the application,
whatever class that something is. The result is modal-blocked rather than
a bare timeout.
Prompts of this kind are suppressed in the first place by DisplayAlerts,
AskToUpdateLinks, UpdateLinks:=0, IgnoreReadOnlyRecommended, and
closing without saving. Detection covers the case where VBA under test turns
suppression back on. Alert suppression is re-asserted before the harness
closes, saves, or quits, so user code cannot leave a prompt waiting for the
teardown path.
result.dialogs records what appeared and what was done about it. On a
blocked dialog or a timeout, a screenshot of the Excel window is captured
where possible and referenced from the result, which is the practical way to
see an Excel prompt whose text cannot be read.
Process ownership
The harness creates its own Excel instance and never attaches to a running
one. It verifies this by comparing EXCEL.EXE process IDs before and after
creation, and refuses to proceed if the instance already existed, since a
timeout would terminate it.
The owned instance is placed in a kernel job object with kill-on-close, so Windows terminates Excel if the harness process dies for any reason, including a force kill. Manifest files provide a second layer: they record process ID and start time together, so a later sweep cannot terminate an unrelated process that reused the ID.
One session runs at a time per machine by default, preventing accidental
overlap. SessionPool is the supported route to concurrency.
Run targets must be a plain Proc or Module.Proc inside the harness
workbook. Workbook-qualified targets are rejected before any COM call.
Performance
Measured on Excel 365 x64 with Python 3.14
(benchmarks/output/baseline-1.0.0.json):
| Operation | Median |
|---|---|
| Session startup and teardown | 0.5 s warm, ~3 s cold |
| Run a procedure, same target as previous call | 0.5 ms |
| Run a procedure with arguments | 0.7 ms |
run_vba with unchanged source |
0.9 ms |
| Run a different target (dispatcher regenerated) | 76 ms |
| Batched calls, 1000 per batch | 0.094 ms each |
| Compile check, clean project | 1.0 s |
| Write 10,000 cells | 63 ms |
| Read 10,000 cells | 9 ms |
Per-run cost depends on three caches: resolved target signatures, injected source, and the generated dispatcher. Repeated calls to the same target with unchanged source hit all three. Changing the target regenerates the dispatcher, which accounts for the 97 ms figure.
Development
python -m pytest tests/unit # 147 tests, no Excel
python -m pytest tests/live -m live -o addopts="" # 58 tests, real Excel
python benchmarks/run_benchmarks.py
python benchmarks/run_pool_benchmarks.py
The unit suite covers dialog policy, trace validation, signature parsing, code generation, source instrumentation, and write chunking, plus the supervisor state machine driven by a fake worker that speaks the same pipe protocol. The live suite covers real Excel behavior, including deliberate hangs, blocking dialogs, and a worker terminated mid-run; it asserts that no Excel processes survive.
Documentation
| Document | Contents |
|---|---|
| Architecture | Process model, hang-resistance layers, design rationale |
| Troubleshooting | What each failure means and what to do about it |
| Implementation guide | How to change the code; catalog of measured Excel behaviors |
| Releasing | Version bump, validation, and the PyPI publishing workflow |
License
MIT. See LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyvbaharness-1.0.0.tar.gz.
File metadata
- Download URL: pyvbaharness-1.0.0.tar.gz
- Upload date:
- Size: 81.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
27b4b4be6335055b796bce240ab71f1d19b56b37c1df4f490ca2fb8724ec921f
|
|
| MD5 |
ca76728f6461baa946e47817c6409794
|
|
| BLAKE2b-256 |
791350b867ab57e0defc1b5195b83ab0a4054c8f14f0edc4bc1fcf5ffcf49bb3
|
Provenance
The following attestation bundles were made for pyvbaharness-1.0.0.tar.gz:
Publisher:
publish.yml on WilliamSmithEdward/pyVBAharness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyvbaharness-1.0.0.tar.gz -
Subject digest:
27b4b4be6335055b796bce240ab71f1d19b56b37c1df4f490ca2fb8724ec921f - Sigstore transparency entry: 2254524518
- Sigstore integration time:
-
Permalink:
WilliamSmithEdward/pyVBAharness@ae7559998baf4ee38c5954b76f60a7e6cad3f0b4 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/WilliamSmithEdward
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ae7559998baf4ee38c5954b76f60a7e6cad3f0b4 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyvbaharness-1.0.0-py3-none-any.whl.
File metadata
- Download URL: pyvbaharness-1.0.0-py3-none-any.whl
- Upload date:
- Size: 84.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1c104a38264aa0e75f4a47e4a2e881584bd8d31f8f0232053e86a3248e11739
|
|
| MD5 |
3aed67ca5044d745645d08b2790ed11c
|
|
| BLAKE2b-256 |
1853fc60fcf00e0087d0d1469c7ee71e9f8c969b320d2d219d1a9d88d827e28e
|
Provenance
The following attestation bundles were made for pyvbaharness-1.0.0-py3-none-any.whl:
Publisher:
publish.yml on WilliamSmithEdward/pyVBAharness
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyvbaharness-1.0.0-py3-none-any.whl -
Subject digest:
f1c104a38264aa0e75f4a47e4a2e881584bd8d31f8f0232053e86a3248e11739 - Sigstore transparency entry: 2254524541
- Sigstore integration time:
-
Permalink:
WilliamSmithEdward/pyVBAharness@ae7559998baf4ee38c5954b76f60a7e6cad3f0b4 -
Branch / Tag:
refs/tags/v1.0.0 - Owner: https://github.com/WilliamSmithEdward
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ae7559998baf4ee38c5954b76f60a7e6cad3f0b4 -
Trigger Event:
release
-
Statement type: