Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Spacing in Path Bug on Windows #41

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion execexam/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def run( # noqa: PLR0913, PLR0915
# build the command for running symbex; this tool can
# perform static analysis of Python source code and
# extract the code of a function inside of a file
command = f"symbex {test_name} -f {failing_test_path}"
command = f'symbex "{test_name}" -f "{failing_test_path}"'
# run the symbex command and collect its output
process = subprocess.run(
command,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "execexam"
version = "0.3.2"
version = "0.3.3"
description = "ExecExam runs executable examinations, providing feedback and assistance!"
authors = ["Hemani Alaparthi <[email protected]>","Gregory M. Kapfhammer <[email protected]>"]
readme = "README.md"
Expand Down
Loading