-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Wait until container's ports are available before considering it created
- Loading branch information
1 parent
e85305f
commit b964a36
Showing
5 changed files
with
39 additions
and
11 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[tool.poetry] | ||
name = "pytest_hoverfly" | ||
version = "4.0.1" | ||
version = "4.0.2" | ||
description = "Simplify working with Hoverfly from pytest" | ||
authors = ["Devops team <[email protected]>"] | ||
authors = ["Devops team at Wrike <[email protected]>"] | ||
repository = "https://github.com/wrike/pytest-hoverfly" | ||
license = "MIT" | ||
readme = "README.md" | ||
|
@@ -16,9 +16,9 @@ classifiers = [ | |
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
pytest = ">=5.0" | ||
requests = "^2.22.0" | ||
docker = "^4.2.0" | ||
typing_extensions = "^3.7.4" | ||
requests = ">=2.22.0" | ||
docker = ">=4.2.0" | ||
typing_extensions = ">=3.7.4" | ||
|
||
[tool.poetry.dev-dependencies] | ||
flake8 = ">=3.7.7" | ||
|
@@ -27,7 +27,7 @@ isort = ">=5.3" | |
pytest-cov = ">=2.7.1" | ||
black = "^20.8b1" | ||
|
||
[tool.poetry.plugins] # Optional super table | ||
[tool.poetry.plugins] | ||
[tool.poetry.plugins."pytest11"] | ||
"hoverfly" = "pytest_hoverfly.pytest_hoverfly" | ||
|
||
|
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