Skip to content

Commit

Permalink
remove unasync
Browse files Browse the repository at this point in the history
  • Loading branch information
graingert committed Jun 27, 2021
1 parent 72be7f2 commit 92bac99
Show file tree
Hide file tree
Showing 7 changed files with 348 additions and 346 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools", "wheel", "unasync~=0.5.0"]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[tool.black]
Expand Down
4 changes: 2 additions & 2 deletions pytest_bdd/__init__.py
@@ -1,8 +1,8 @@
"""pytest-bdd public API."""

from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios, async_scenario, async_scenarios
from pytest_bdd.scenario import scenario, scenarios

__version__ = "4.0.2"

__all__ = ["given", "when", "then", "scenario", "scenarios", "async_scenario", "async_scenarios"]
__all__ = ["given", "when", "then", "scenario", "scenarios"]
Empty file removed pytest_bdd/_async/__init__.py
Empty file.
307 changes: 0 additions & 307 deletions pytest_bdd/_async/scenario.py

This file was deleted.

0 comments on commit 92bac99

Please sign in to comment.