-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Generate more reasonable variable names in tests. Before this release, Pynguin only generated variables named `var0`, `var1`, etc. A simple heuristics now attempts to generate more reasonable names depending on the type of the variable, such as `int_0`, `bool_1`, or `str_2`. We also adjusted the documentation to match this change. - We updated all provided PyCharm run configurations the use the more sophisticated queue example instead of the simple example module to see an improved output. - Prevent a potential regression when updating the dependencies to version 0.0.17 of the [simple-parsing](https://pypi.org/project/simple-parsing) library for CLI argument parsing, which changed its API.
- Loading branch information
1 parent
642c6a3
commit 3f13606
Showing
4 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
[tool.poetry] | ||
name = "pynguin" | ||
version = "0.12.0.dev" | ||
version = "0.12.0" | ||
description = "Pynguin is a tool for automated unit test generation for Python" | ||
authors = ["Stephan Lukasczyk <[email protected]>"] | ||
license = "LGPL-3.0-or-later" | ||
|