Skip to content

Commit

Permalink
fix double test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariel Ben-Yehuda committed Jan 27, 2025
1 parent 6c49947 commit 80f138a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pytests/tests/test_othermod.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from hypothesis import given, assume
from hypothesis import given, assume, settings
from hypothesis import strategies as st

from pyo3_pytests import othermod

INTEGER32_ST = st.integers(min_value=(-(2**31)), max_value=(2**31 - 1))
INTEGER32_ST = st.integers(min_value=(-(2**30)), max_value=(2**30 - 1))
USIZE_ST = st.integers(min_value=othermod.USIZE_MIN, max_value=othermod.USIZE_MAX)


Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#![warn(missing_docs)]
#![allow(unknown_lints)]
#![allow(clippy::literal_string_with_formatting_args)]
#![cfg_attr(
feature = "nightly",
feature(auto_traits, negative_impls, try_trait_v2)
Expand Down

0 comments on commit 80f138a

Please sign in to comment.