Skip to content

Commit

Permalink
Fix #227
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Apr 7, 2024
1 parent e03fed3 commit 767d478
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -33,3 +33,9 @@ jobs:
run: RSTEST_TEST_CHANNEL=beta; cargo test --all --verbose
- name: Run tests nightly
run: RSTEST_TEST_CHANNEL=nightly; cargo test --all --verbose
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@cargo-hack
- run: cargo hack check --rust-version --workspace --all-targets --ignore-private
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -6,6 +6,8 @@

# Fixture-based test framework for Rust



## Introduction

`rstest` uses procedural macros to help you on writing
Expand Down Expand Up @@ -482,6 +484,10 @@ is raised, but it's also possible to exclude a variable using the
You can learn more on [Docs][docs-link] and find more examples in
[`tests/resources`](/rstest/tests/resources) directory.

## Rust version compatibility

The minimum supported Rust version is 1.67.1.

## Changelog

See [CHANGELOG.md](/CHANGELOG.md)
Expand Down
1 change: 1 addition & 0 deletions rstest/Cargo.toml
Expand Up @@ -12,6 +12,7 @@ license = "MIT OR Apache-2.0"
name = "rstest"
readme = "README.md"
repository = "https://github.com/la10736/rstest"
rust-version = "1.67.1"
version = "0.19.0"

[features]
Expand Down
7 changes: 6 additions & 1 deletion rstest/src/lib.rs
Expand Up @@ -229,11 +229,16 @@
//!
//! # Optional features
//!
//! `rstest` Enable all fetures by default. You can disable them if you need to
//! `rstest` Enable all features by default. You can disable them if you need to
//! speed up compilation.
//!
//! - **`async-timeout`** *(enabled by default)* — Implement timeout for async
//! tests.
//!
//! # Rust version compatibility
//!
//! The minimum supported Rust version is 1.67.1.
//!

#[doc(hidden)]
pub mod magic_conversion;
Expand Down
1 change: 1 addition & 0 deletions rstest_reuse/Cargo.toml
Expand Up @@ -12,6 +12,7 @@ license = "MIT OR Apache-2.0"
name = "rstest_reuse"
readme = "README.md"
repository = "https://github.com/la10736/rstest"
rust-version = "1.60.0"
version = "0.6.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 767d478

Please sign in to comment.