-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add type hints * Remove html support * Refactor plugin * Update unittests * Bump triple
- Loading branch information
Showing
5 changed files
with
96 additions
and
84 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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[tool.poetry] | ||
name = "pytest-timestamps" | ||
version = "0.1.4" | ||
version = "0.2.0" | ||
description = "A simple plugin to view timestamps for each test" | ||
authors = ["TJ <[email protected]>"] | ||
packages = [{ include = "pytest_timestamps" }] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.7, <4.0" | ||
pytest = ">=5.2" | ||
python = ">=3.8, <4.0" | ||
pytest = "^7.3" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
freezegun = "^1.0" | ||
ruff = "^0.0.260" | ||
black = "^23.3.0" | ||
ruff = "^0.0.287" | ||
black = "^23.9.1" | ||
mypy = "^1.5.1" | ||
|
||
[tool.poetry.plugins."pytest11"] | ||
timestamps = "pytest_timestamps.plugin" | ||
|
@@ -45,4 +45,4 @@ legacy_tox_ini = """ | |
commands = | ||
poetry install --only dev | ||
poetry run pytest -v | ||
""" | ||
""" |
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