Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.1.1 - support yield #2

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ The pytest parametrize scope fixture workaround.

There's also a `param_scope` fixture to allow the return value of the setup function to be passed to the test.

**WARNING: this is beta, or more like alpha, and the API ~~may~~ will change before it settles.**

**EXAMPLE: There's an active branch to change the API to allow yield functions (generators) and NOT allow a standalone teardown function.**

## Installation

From PyPI:
Expand Down
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ All notable changes to this project be documented in this file.
- nothing so far

-->
## [0.1.1] - 2023-Oct-18

### Changed

- Added support for `yield` functions for combining setup/teardown.

## [0.0.3] - 2023-Oct-14

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [{name = "Brian Okken"}]
readme = "README.md"
license = {file = "LICENSE.txt"}
description="pytest parametrize scope fixture workaround"
version = "0.0.3"
version = "0.1.1"
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
Expand Down