-
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.
- Provide a (normalised) area under curve for timeline output variables. Variables for statistics that produce a timeline, e.g., coverage development over time imply in interesting property: while the final coverage of two distinct runs/configurations might be equal, one might have a faster coverage increase than the other, thus could be considered better. The area under curve, i.e., the integral over the development function allows to access this property easily. - Add the ability to write the logging to a log file and not only STDOUT. - Add an auto-deploy action to GitHub to push releases to PyPI. - Fix a typo in the documentation (cf. GitHub issue #75). - Switch to `ruff-format`.
- Loading branch information
1 parent
cbc686f
commit 27fcc48
Showing
4 changed files
with
20 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
[tool.poetry] | ||
name = "pynguin" | ||
version = "0.40.0.dev" | ||
version = "0.40.0" | ||
description = "Pynguin is a tool for automated unit test generation for Python" | ||
authors = ["Stephan Lukasczyk <[email protected]>"] | ||
license = "MIT" | ||
|
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
# | ||
"""Specifies the version of Pynguin.""" | ||
|
||
__version__ = "0.40.0.dev" | ||
__version__ = "0.40.0" |