Skip to content

Commit 92bac99

Browse files
committed
remove unasync
1 parent 72be7f2 commit 92bac99

File tree

7 files changed

+348
-346
lines changed

7 files changed

+348
-346
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "unasync~=0.5.0"]
2+
requires = ["setuptools", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[tool.black]

pytest_bdd/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""pytest-bdd public API."""
22

33
from pytest_bdd.steps import given, when, then
4-
from pytest_bdd.scenario import scenario, scenarios, async_scenario, async_scenarios
4+
from pytest_bdd.scenario import scenario, scenarios
55

66
__version__ = "4.0.2"
77

8-
__all__ = ["given", "when", "then", "scenario", "scenarios", "async_scenario", "async_scenarios"]
8+
__all__ = ["given", "when", "then", "scenario", "scenarios"]

pytest_bdd/_async/__init__.py

Whitespace-only changes.

pytest_bdd/_async/scenario.py

-307
This file was deleted.

0 commit comments

Comments
 (0)