-
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.
- Add possibility to control number of mutations in MOSA. - Compute the area under curve if Pynguin traces the coverage over time; area under curve can be interpreted as the integral over the coverage function, which is computed via trapezoidal approximation. - Fix the assertion generation for `float`s (thanks to @BergLucas in #70) - Fix assertions and invalid function call (thanks to @BergLucas in #72)
- Loading branch information
1 parent
3174e37
commit 1876543
Showing
4 changed files
with
13 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
# Build stage for Pynguin | ||
FROM python:3.10.14-slim-bullseye AS build | ||
LABEL org.opencontainers.image.authors="Stephan Lukasczyk <[email protected]>" | ||
ENV POETRY_VERSION "1.8.2" | ||
ENV POETRY_VERSION "1.8.3" | ||
|
||
WORKDIR /pynguin-build | ||
|
||
|
@@ -36,7 +36,7 @@ FROM python:3.10.14-slim-bullseye AS execute | |
|
||
# Set environment variables | ||
# Set the Pynguin version | ||
ENV PYNGUIN_VERSION "0.37.0.dev0" | ||
ENV PYNGUIN_VERSION "0.37.0" | ||
# Pynguin requires to set the variable to show it that the user is aware that running | ||
# Pynguin executes third-party code, which could cause arbitrary harm to the system. | ||
# By setting the variable, the user acknowledges that they are aware of this. In the | ||
|
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.37.0.dev" | ||
version = "0.37.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