Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 83006de

Browse files
committed
Fix: Run the build in the correct venv.
1 parent 1786257 commit 83006de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runestone/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def setUpModule(self):
122122
os.chdir(self.base_path)
123123
# Compile the docs. Save the stdout and stderr for examination.
124124
p = subprocess.run(
125-
["runestone", "build", "--all"], capture_output=True, text=True,
125+
[sys.executable, "-m", "runestone", "build", "--all"], capture_output=True, text=True,
126126
)
127127
self.build_stdout_data = p.stdout
128128
self.build_stderr_data = p.stderr

0 commit comments

Comments
 (0)