@@ -42,7 +42,7 @@ def fixture_plugin_type() -> type[ConanProvider]:
4242 """
4343 return ConanProvider
4444
45- def test_publish_local_only (
45+ def test_local_only (
4646 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
4747 ) -> None :
4848 """Test that publish with remotes=[] only exports and builds locally
@@ -87,7 +87,7 @@ def test_publish_local_only(
8787 # Verify upload was NOT called for local mode
8888 conan_mock_api_publish .upload .upload_full .assert_not_called ()
8989
90- def test_publish_with_upload (
90+ def test_with_upload (
9191 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
9292 ) -> None :
9393 """Test that publish with remotes=['conancenter'] exports, builds, and uploads
@@ -121,7 +121,7 @@ def test_publish_with_upload(
121121 conan_mock_api_publish .list .select .assert_called_once ()
122122 conan_mock_api_publish .upload .upload_full .assert_called_once ()
123123
124- def test_publish_no_remotes_configured (
124+ def test_no_remotes_configured (
125125 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
126126 ) -> None :
127127 """Test that publish raises error when no remotes are configured for upload
@@ -149,7 +149,7 @@ def test_publish_no_remotes_configured(
149149 with pytest .raises (ProviderConfigurationError , match = 'No configured remotes found' ):
150150 plugin .publish ()
151151
152- def test_publish_no_packages_found (
152+ def test_no_packages_found (
153153 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
154154 ) -> None :
155155 """Test that publish raises error when no packages are found to upload
@@ -179,7 +179,7 @@ def test_publish_no_packages_found(
179179 with pytest .raises (ProviderInstallationError , match = 'No packages found to upload' ):
180180 plugin .publish ()
181181
182- def test_publish_with_default_profiles (
182+ def test_with_default_profiles (
183183 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
184184 ) -> None :
185185 """Test that publish uses pre-resolved profiles from plugin construction
@@ -209,7 +209,7 @@ def test_publish_with_default_profiles(
209209 assert call_args .kwargs ['profile_host' ] == plugin .data .host_profile
210210 assert call_args .kwargs ['profile_build' ] == plugin .data .build_profile
211211
212- def test_publish_upload_parameters (
212+ def test_upload_parameters (
213213 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
214214 ) -> None :
215215 """Test that publish upload is called with correct parameters
@@ -254,7 +254,7 @@ def test_publish_upload_parameters(
254254 dry_run = False ,
255255 )
256256
257- def test_publish_list_pattern_creation (
257+ def test_list_pattern_creation (
258258 self , plugin : ConanProvider , conan_mock_api_publish : Mock , conan_temp_conanfile : None , mocker : MockerFixture
259259 ) -> None :
260260 """Test that publish creates correct ListPattern for package selection
0 commit comments