-
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.
- Activate a larger selection of checkers for ruff - Implement various stopping conditions
- Loading branch information
1 parent
cf15058
commit 4317a34
Showing
5 changed files
with
12 additions
and
7 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 |
---|---|---|
|
@@ -11,9 +11,9 @@ | |
############################################################################### | ||
|
||
# Build stage for Pynguin | ||
FROM python:3.10.11-slim-bullseye AS build | ||
FROM python:3.10.12-slim-bullseye AS build | ||
MAINTAINER Stephan Lukasczyk <[email protected]> | ||
ENV POETRY_VERSION "1.4.2" | ||
ENV POETRY_VERSION "1.5.1" | ||
|
||
WORKDIR /pynguin-build | ||
|
||
|
@@ -37,11 +37,11 @@ RUN pip install poetry==$POETRY_VERSION \ | |
|
||
|
||
# Execution stage for Pynguin | ||
FROM python:3.10.11-slim-bullseye AS execute | ||
FROM python:3.10.12-slim-bullseye AS execute | ||
|
||
# Set environment variables | ||
# Set the Pynguin version | ||
ENV PYNGUIN_VERSION "0.34.0.dev0" | ||
ENV PYNGUIN_VERSION "0.34.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.34.0.dev" | ||
version = "0.34.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