We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c49947 commit 80f138aCopy full SHA for 80f138a
pytests/tests/test_othermod.py
@@ -1,9 +1,9 @@
1
-from hypothesis import given, assume
+from hypothesis import given, assume, settings
2
from hypothesis import strategies as st
3
4
from pyo3_pytests import othermod
5
6
-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))
7
USIZE_ST = st.integers(min_value=othermod.USIZE_MIN, max_value=othermod.USIZE_MAX)
8
9
src/lib.rs
@@ -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)
0 commit comments