Skip to content

Commit 31a1701

Browse files
committed
Update configuration
1 parent 00e59ef commit 31a1701

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Exit status: 0 (Success)
2626
............ | INFO | GlobalPythonEngine | Symbolic: stop receiver
2727
............ | INFO | PythonTestCaseGenerator | Collect all test executions for some_method
2828
............ | INFO | SbftGenerateTestsCommand | Saving tests...
29+
Process finished in ...
30+
Mean time: ...
31+
Max time: ...
2932
```
3033

3134
If you get a message `No VenvConfig`, virtual environment in our interpreter was not activated for some reason.

poetry.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ packages = [{include = "python_tool_competition_2024_utbot_python"}]
1010
[tool.poetry.dependencies]
1111
python = "^3.11"
1212
python-tool-competition-2024 = "^0.2.0"
13-
utbot-executor = "1.9.2"
13+
utbot-executor = "1.9.5"
1414
utbot-mypy-runner = "0.2.15"
1515
utbot_dist = [
16-
{ url = "https://github.com/UnitTestBot/UTBotPythonSBFT2024/releases/download/v3/utbot_dist-0.1.0-py3-none-manylinux_2_31_x86_64.whl", platform = "linux" }
16+
{ url = "https://github.com/UnitTestBot/UTBotPythonSBFT2024/releases/download/v4/utbot_dist-0.1.0-py3-none-manylinux_2_31_x86_64.whl", platform = "linux" }
1717
]
1818

1919
[build-system]

python_tool_competition_2024_utbot_python/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class UTBotPythonConfig:
77
JAVA_PATH = "java"
88
SITE_DIR = pathlib.Path(site.getsitepackages()[0])
9-
JAR_FILE = SITE_DIR / "utbot_dist" / "utbot-cli-python-2023.11-SNAPSHOT.jar"
9+
JAR_FILE = SITE_DIR / "utbot_dist" / "utbot-cli-python.jar"
1010
USVM_PATH = SITE_DIR / "utbot_dist" / "usvm-python"
1111
PYTHON_PATH = sys.executable
1212
INCLUDE_MYPY_RUN_IN_TIMEOUT = True

python_tool_competition_2024_utbot_python/generator.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ def _run_utbot(
112112
f" --usvm-dir {usvm_dir}"
113113
f" --runtime-exception-behaviour PASS"
114114
f" --prohibited-exceptions -"
115+
f" --do-not-generate-state-assertions"
115116
)
116117
if check_usvm:
117118
command += " --check-usvm"

0 commit comments

Comments
 (0)