diff --git a/tests/test_property.py b/tests/integration/test_property.py similarity index 95% rename from tests/test_property.py rename to tests/integration/test_property.py index 4e7cb0c5..054ddabd 100644 --- a/tests/test_property.py +++ b/tests/integration/test_property.py @@ -38,7 +38,7 @@ def test_shuffling_data_single_table(property): @pytest.mark.parametrize('property', MULTI_TABLE_PROPERTIES) -def test_property_multi_table(property): +def test_shuffling_data_multi_table(property): """Test the property score is the same when shuffling the data for multi-table.""" # Setup property_instance = property() @@ -56,4 +56,4 @@ def test_property_multi_table(property): ) # Assert - assert np.isclose(score, score_shuffled, rtol=1e-10) + assert np.isclose(score, score_shuffled, rtol=1e-12)