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 9d6bb37 commit e5f2d99Copy full SHA for e5f2d99
tests/integ/test_packaging.py
@@ -691,8 +691,9 @@ def check_if_package_works() -> str:
691
def test_add_packages_with_native_dependency_without_force_push(session):
692
session.custom_package_usage_config = {"enabled": True}
693
with patch.object(session, "_is_anaconda_terms_acknowledged", lambda: True):
694
- with pytest.raises(
695
- RuntimeError, match="Your code depends on packages that contain native code"
+ with pytest.raises( # macos python 3.13 fails with "Pip failed with return code 1"
+ RuntimeError,
696
+ match="Your code depends on packages that contain native code|Pip failed with return code 1",
697
):
698
session.add_packages(["pymupdf==1.24.10"])
699
0 commit comments