We have no packages needed for cloud testing --- barman-release-3.12.0/tests/requirements_dev.txt.orig +++ barman-release-3.12.0/tests/requirements_dev.txt @@ -1,10 +1,6 @@ . -.[cloud] -.[azure] -.[snappy] .[zstandard] .[lz4] -.[google] pytest mock py --- barman-release-3.12.0/tests/test_barman_cloud_backup.py.orig +++ barman-release-3.12.0/tests/test_barman_cloud_backup.py @@ -158,6 +158,7 @@ ) assert expected_message in err + @pytest.mark.skip(reason="We have no packages needed for cloud testing") @pytest.mark.parametrize( ("snapshot_args", "expected_error"), ( @@ -338,6 +339,7 @@ # AND its backup function was called exactly once mock_snapshot_backup.backup.assert_called_once() + @pytest.mark.skip(reason="We have no packages needed for cloud testing") @pytest.mark.parametrize( ("aws_cli_args", "expected_cloud_interface_kwargs"), [ @@ -387,6 +389,7 @@ **expected_cloud_interface_kwargs ) + @pytest.mark.skip(reason="We have no packages needed for cloud testing") @pytest.mark.parametrize( ("gcp_cli_args", "expected_cloud_interface_kwargs"), [ --- barman-release-3.12.0/tests/test_barman_cloud_restore.py.orig +++ barman-release-3.12.0/tests/test_barman_cloud_restore.py @@ -93,6 +93,7 @@ mock_backup_info, recovery_dir, {} ) + @pytest.mark.skip(reason="We have no packages needed for cloud testing") @pytest.mark.parametrize( ("provider", "snapshot_args", "expected_error"), ( --- barman-release-3.12.0/tests/test_executor.py.orig +++ barman-release-3.12.0/tests/test_executor.py @@ -1901,6 +1901,7 @@ # AND the exception message was logged assert "test-message" in caplog.text + @pytest.mark.skip(reason="We have no packages needed for cloud testing") @patch("barman.backup_executor.ExternalBackupExecutor.check") def test_check_skipped_if_server_disabled( self, mock_parent_check_fun, core_snapshot_options