From cee988096bdce715b82aa513089e9464cf082aaf Mon Sep 17 00:00:00 2001 From: Vaerh Date: Sun, 22 Dec 2024 21:21:21 +0300 Subject: [PATCH] ci: Disable parallel testing --- .github/workflows/module_testing.yml | 18 +++++++++--------- routeros/datasource_system_routerboard_test.go | 2 +- routeros/resource_interface_6to4_test.go | 2 +- routeros/resource_interface_lte_apn_test.go | 2 +- routeros/resource_interface_vxlan_test.go | 2 +- .../resource_interface_vxlan_vteps_test.go | 2 +- ...urce_interface_wireless_access_list_test.go | 2 +- ...nterface_wireless_security_profiles_test.go | 2 +- .../resource_ip_hotspot_ip_binding_test.go | 2 +- routeros/resource_ip_hotspot_profile_test.go | 2 +- .../resource_ip_hotspot_service_port_test.go | 2 +- routeros/resource_ip_hotspot_test.go | 2 +- .../resource_ip_hotspot_user_profile_test.go | 2 +- routeros/resource_ip_hotspot_user_test.go | 2 +- ...esource_ip_hotspot_walled_garden_ip_test.go | 2 +- .../resource_ip_hotspot_walled_garden_test.go | 2 +- routeros/resource_ip_ipsec_identity_test.go | 2 +- routeros/resource_ip_ipsec_key_test.go | 2 +- routeros/resource_ip_ipsec_mode_config_test.go | 2 +- routeros/resource_ip_ipsec_peer_test.go | 2 +- .../resource_ip_ipsec_policy_group_test.go | 2 +- routeros/resource_ip_ipsec_policy_test.go | 2 +- routeros/resource_ip_ipsec_profile_test.go | 2 +- routeros/resource_ip_ipsec_proposal_test.go | 2 +- routeros/resource_ip_ipsec_settings_test.go | 2 +- ...source_ipv6_dhcp_server_option_sets_test.go | 2 +- .../resource_ipv6_dhcp_server_option_test.go | 2 +- routeros/resource_ipv6_dhcp_server_test.go | 2 +- routeros/resource_ipv6_pool_test.go | 2 +- routeros/resource_routing_rule_test.go | 2 +- routeros/resource_system_user_aaa_test.go | 2 +- routeros/resource_system_user_group_test.go | 2 +- routeros/resource_system_user_settings_test.go | 2 +- routeros/resource_system_user_test.go | 2 +- routeros/resource_tool_netwatch_test.go | 2 +- routeros/resource_tool_sniffer_test.go | 2 +- routeros/resource_wireguard_keys_test.go | 2 +- 37 files changed, 45 insertions(+), 45 deletions(-) diff --git a/.github/workflows/module_testing.yml b/.github/workflows/module_testing.yml index a5222912..026ee07c 100644 --- a/.github/workflows/module_testing.yml +++ b/.github/workflows/module_testing.yml @@ -36,15 +36,15 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v4 - # - name: Cache restore - # uses: actions/cache/restore@v4 - # with: - # path: | - # ~/.cache/go-build - # ~/go/pkg/mod - # key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - # restore-keys: | - # ${{ runner.os }}-go- + - name: Cache restore + uses: actions/cache/restore@v4 + with: + path: | + ~/.cache/go-build + ~/go/pkg/mod + key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} + restore-keys: | + ${{ runner.os }}-go- - name: Setup Go environment uses: actions/setup-go@v5 diff --git a/routeros/datasource_system_routerboard_test.go b/routeros/datasource_system_routerboard_test.go index d7931119..052fb9c6 100644 --- a/routeros/datasource_system_routerboard_test.go +++ b/routeros/datasource_system_routerboard_test.go @@ -9,7 +9,7 @@ const testDatasourceSystemRouterboard = "data.routeros_system_routerboard.data" func TestAccDatasourceSystemRouterboardTest_basic(t *testing.T) { t.Log("The test is skipped, the resource is only available on real hardware.") /* - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_6to4_test.go b/routeros/resource_interface_6to4_test.go index d0babd9f..51dd804c 100644 --- a/routeros/resource_interface_6to4_test.go +++ b/routeros/resource_interface_6to4_test.go @@ -10,7 +10,7 @@ import ( const testInterface6to4 = "routeros_interface_6to4.test" func TestAccInterface6to4Test_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_lte_apn_test.go b/routeros/resource_interface_lte_apn_test.go index cda15e9b..e4b930fb 100644 --- a/routeros/resource_interface_lte_apn_test.go +++ b/routeros/resource_interface_lte_apn_test.go @@ -10,7 +10,7 @@ import ( const testInterfaceLteApn = "routeros_interface_lte_apn.test" func TestAccInterfaceLteApnTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_vxlan_test.go b/routeros/resource_interface_vxlan_test.go index 071dc37f..8effffe2 100644 --- a/routeros/resource_interface_vxlan_test.go +++ b/routeros/resource_interface_vxlan_test.go @@ -10,7 +10,7 @@ import ( const testInterfaceVxlan = "routeros_interface_vxlan.test" func TestAccInterfaceVxlanTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_vxlan_vteps_test.go b/routeros/resource_interface_vxlan_vteps_test.go index 5698f22f..81aad1f1 100644 --- a/routeros/resource_interface_vxlan_vteps_test.go +++ b/routeros/resource_interface_vxlan_vteps_test.go @@ -10,7 +10,7 @@ import ( const testInterfaceVxlanVteps = "routeros_interface_vxlan_vteps.test" func TestAccInterfaceVxlanVtepsTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_wireless_access_list_test.go b/routeros/resource_interface_wireless_access_list_test.go index a77618f3..86e92c81 100644 --- a/routeros/resource_interface_wireless_access_list_test.go +++ b/routeros/resource_interface_wireless_access_list_test.go @@ -15,7 +15,7 @@ func TestAccInterfaceWirelessAccessListTest_basic(t *testing.T) { return } - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_interface_wireless_security_profiles_test.go b/routeros/resource_interface_wireless_security_profiles_test.go index a5e01187..3f59ae48 100644 --- a/routeros/resource_interface_wireless_security_profiles_test.go +++ b/routeros/resource_interface_wireless_security_profiles_test.go @@ -15,7 +15,7 @@ func TestAccInterfaceWirelessSecurityProfilesTest_basic(t *testing.T) { return } - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_ip_binding_test.go b/routeros/resource_ip_hotspot_ip_binding_test.go index f2ff6eeb..9149837a 100644 --- a/routeros/resource_ip_hotspot_ip_binding_test.go +++ b/routeros/resource_ip_hotspot_ip_binding_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotIpBinding = "routeros_ip_hotspot_ip_binding.test" func TestAccIpHotspotIpBindingTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_profile_test.go b/routeros/resource_ip_hotspot_profile_test.go index 625a40d4..55a8317a 100644 --- a/routeros/resource_ip_hotspot_profile_test.go +++ b/routeros/resource_ip_hotspot_profile_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotProfile = "routeros_ip_hotspot_profile.test" func TestAccIpHotspotProfileTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_service_port_test.go b/routeros/resource_ip_hotspot_service_port_test.go index 7ccdacf4..82ca5ef2 100644 --- a/routeros/resource_ip_hotspot_service_port_test.go +++ b/routeros/resource_ip_hotspot_service_port_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotServicePort = "routeros_ip_hotspot_service_port.test" func TestAccIpHotspotServicePortTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_test.go b/routeros/resource_ip_hotspot_test.go index b118d8a1..67eec08b 100644 --- a/routeros/resource_ip_hotspot_test.go +++ b/routeros/resource_ip_hotspot_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspot = "routeros_ip_hotspot.test" func TestAccIpHotspotTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_user_profile_test.go b/routeros/resource_ip_hotspot_user_profile_test.go index e59dbdaa..7173673f 100644 --- a/routeros/resource_ip_hotspot_user_profile_test.go +++ b/routeros/resource_ip_hotspot_user_profile_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotUserProfile = "routeros_ip_hotspot_user_profile.test" func TestAccIpHotspotUserProfileTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_user_test.go b/routeros/resource_ip_hotspot_user_test.go index 336ec102..6d164a48 100644 --- a/routeros/resource_ip_hotspot_user_test.go +++ b/routeros/resource_ip_hotspot_user_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotUser = "routeros_ip_hotspot_user.test" func TestAccIpHotspotUserTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_walled_garden_ip_test.go b/routeros/resource_ip_hotspot_walled_garden_ip_test.go index 534d0c92..c5ddf1ac 100644 --- a/routeros/resource_ip_hotspot_walled_garden_ip_test.go +++ b/routeros/resource_ip_hotspot_walled_garden_ip_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotWalledGardenIp = "routeros_ip_hotspot_walled_garden_ip.test" func TestAccIpHotspotWalledGardenIpTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_hotspot_walled_garden_test.go b/routeros/resource_ip_hotspot_walled_garden_test.go index fb9044df..73075d1f 100644 --- a/routeros/resource_ip_hotspot_walled_garden_test.go +++ b/routeros/resource_ip_hotspot_walled_garden_test.go @@ -10,7 +10,7 @@ import ( const testIpHotspotWalledGarden = "routeros_ip_hotspot_walled_garden.test" func TestAccIpHotspotWalledGardenTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_identity_test.go b/routeros/resource_ip_ipsec_identity_test.go index 8c22bd24..8fe9411c 100644 --- a/routeros/resource_ip_ipsec_identity_test.go +++ b/routeros/resource_ip_ipsec_identity_test.go @@ -11,7 +11,7 @@ import ( const testIpIpsecIdentity = "routeros_ip_ipsec_identity.identity" func TestAccIpIpsecIdentityTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_key_test.go b/routeros/resource_ip_ipsec_key_test.go index 207c3c11..37764f81 100644 --- a/routeros/resource_ip_ipsec_key_test.go +++ b/routeros/resource_ip_ipsec_key_test.go @@ -10,7 +10,7 @@ import ( const testIpIpsecKey = "routeros_ip_ipsec_key.test" func TestAccIpIpsecKeyTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_mode_config_test.go b/routeros/resource_ip_ipsec_mode_config_test.go index 18c9a176..780bdd18 100644 --- a/routeros/resource_ip_ipsec_mode_config_test.go +++ b/routeros/resource_ip_ipsec_mode_config_test.go @@ -10,7 +10,7 @@ import ( const testIpIpsecModeConfig = "routeros_ip_ipsec_mode_config.test" func TestAccIpIpsecModeConfigTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_peer_test.go b/routeros/resource_ip_ipsec_peer_test.go index f614acdb..67018461 100644 --- a/routeros/resource_ip_ipsec_peer_test.go +++ b/routeros/resource_ip_ipsec_peer_test.go @@ -10,7 +10,7 @@ import ( const testIpIpsecPeer = "routeros_ip_ipsec_peer.test" func TestAccIpIpsecPeerTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_policy_group_test.go b/routeros/resource_ip_ipsec_policy_group_test.go index 65506453..a8853d6c 100644 --- a/routeros/resource_ip_ipsec_policy_group_test.go +++ b/routeros/resource_ip_ipsec_policy_group_test.go @@ -11,7 +11,7 @@ import ( const testIpIpsecPolicyGroup = "routeros_ip_ipsec_policy_group.test" func TestAccIpIpsecPolicyGroupTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_policy_test.go b/routeros/resource_ip_ipsec_policy_test.go index c533f1d6..f44fa5c4 100644 --- a/routeros/resource_ip_ipsec_policy_test.go +++ b/routeros/resource_ip_ipsec_policy_test.go @@ -11,7 +11,7 @@ import ( const testIpIpsecPolicy = "routeros_ip_ipsec_policy.policy" func TestAccIpIpsecPolicyTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_profile_test.go b/routeros/resource_ip_ipsec_profile_test.go index 5286e649..ca4942a9 100644 --- a/routeros/resource_ip_ipsec_profile_test.go +++ b/routeros/resource_ip_ipsec_profile_test.go @@ -11,7 +11,7 @@ import ( const testIpIpsecProfile = "routeros_ip_ipsec_profile.test" func TestAccIpIpsecProfileTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_proposal_test.go b/routeros/resource_ip_ipsec_proposal_test.go index 944f1b01..d900bf19 100644 --- a/routeros/resource_ip_ipsec_proposal_test.go +++ b/routeros/resource_ip_ipsec_proposal_test.go @@ -10,7 +10,7 @@ import ( const testIpIpsecProposal = "routeros_ip_ipsec_proposal.test" func TestAccIpIpsecProposalTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ip_ipsec_settings_test.go b/routeros/resource_ip_ipsec_settings_test.go index 979e1ee5..a5af7ebd 100644 --- a/routeros/resource_ip_ipsec_settings_test.go +++ b/routeros/resource_ip_ipsec_settings_test.go @@ -10,7 +10,7 @@ import ( const testIpIpsecSettings = "routeros_ip_ipsec_settings.test" func TestAccIpIpsecSettingsTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ipv6_dhcp_server_option_sets_test.go b/routeros/resource_ipv6_dhcp_server_option_sets_test.go index 0e26aea0..86150dca 100644 --- a/routeros/resource_ipv6_dhcp_server_option_sets_test.go +++ b/routeros/resource_ipv6_dhcp_server_option_sets_test.go @@ -10,7 +10,7 @@ import ( const testIpv6DhcpServerOptionSets = "routeros_ipv6_dhcp_server_option_sets.test" func TestAccIpv6DhcpServerOptionSetsTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ipv6_dhcp_server_option_test.go b/routeros/resource_ipv6_dhcp_server_option_test.go index fd8b2580..0705f429 100644 --- a/routeros/resource_ipv6_dhcp_server_option_test.go +++ b/routeros/resource_ipv6_dhcp_server_option_test.go @@ -10,7 +10,7 @@ import ( const testIpv6DhcpServerOption = "routeros_ipv6_dhcp_server_option.test" func TestAccIpv6DhcpServerOptionTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ipv6_dhcp_server_test.go b/routeros/resource_ipv6_dhcp_server_test.go index 84299d69..d446297f 100644 --- a/routeros/resource_ipv6_dhcp_server_test.go +++ b/routeros/resource_ipv6_dhcp_server_test.go @@ -10,7 +10,7 @@ import ( const testIpv6DhcpServer = "routeros_ipv6_dhcp_server.test" func TestAccIpv6DhcpServerTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_ipv6_pool_test.go b/routeros/resource_ipv6_pool_test.go index 49299a9e..9792976b 100644 --- a/routeros/resource_ipv6_pool_test.go +++ b/routeros/resource_ipv6_pool_test.go @@ -10,7 +10,7 @@ import ( const testIpv6Pool = "routeros_ipv6_pool.test" func TestAccIpv6PoolTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_routing_rule_test.go b/routeros/resource_routing_rule_test.go index 78252737..b6cbef81 100644 --- a/routeros/resource_routing_rule_test.go +++ b/routeros/resource_routing_rule_test.go @@ -10,7 +10,7 @@ import ( const testRoutingRule = "routeros_routing_rule.test" func TestAccRoutingRuleTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_system_user_aaa_test.go b/routeros/resource_system_user_aaa_test.go index 44a2c97e..25c53c68 100644 --- a/routeros/resource_system_user_aaa_test.go +++ b/routeros/resource_system_user_aaa_test.go @@ -10,7 +10,7 @@ import ( const testUserAAA = "routeros_system_user_aaa.settings" func TestAccUserAAATest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_system_user_group_test.go b/routeros/resource_system_user_group_test.go index 4fe9a020..15e21344 100644 --- a/routeros/resource_system_user_group_test.go +++ b/routeros/resource_system_user_group_test.go @@ -9,7 +9,7 @@ import ( const testUserGroupAddress = "routeros_system_user_group.test" func TestAccUserGroupTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_system_user_settings_test.go b/routeros/resource_system_user_settings_test.go index 346f996b..4449cc3e 100644 --- a/routeros/resource_system_user_settings_test.go +++ b/routeros/resource_system_user_settings_test.go @@ -10,7 +10,7 @@ import ( const testUserSettings = "routeros_system_user_settings.test" func TestAccUserSettingsTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_system_user_test.go b/routeros/resource_system_user_test.go index cb2892b3..a96cc378 100644 --- a/routeros/resource_system_user_test.go +++ b/routeros/resource_system_user_test.go @@ -9,7 +9,7 @@ import ( const testUserAddress = "routeros_system_user.test" func TestAccUserTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_tool_netwatch_test.go b/routeros/resource_tool_netwatch_test.go index be77bc1d..3941ed2a 100644 --- a/routeros/resource_tool_netwatch_test.go +++ b/routeros/resource_tool_netwatch_test.go @@ -10,7 +10,7 @@ import ( const testToolNetwatch = "routeros_tool_netwatch.test" func TestAccToolNetwatchTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_tool_sniffer_test.go b/routeros/resource_tool_sniffer_test.go index 54fe627f..b1901470 100644 --- a/routeros/resource_tool_sniffer_test.go +++ b/routeros/resource_tool_sniffer_test.go @@ -10,7 +10,7 @@ import ( const testToolSniffer = "routeros_tool_sniffer.test" func TestAccToolSnifferTest_basic(t *testing.T) { - t.Parallel() + // t.Parallel() for _, name := range testNames { t.Run(name, func(t *testing.T) { resource.Test(t, resource.TestCase{ diff --git a/routeros/resource_wireguard_keys_test.go b/routeros/resource_wireguard_keys_test.go index 02ec9031..d0b9add1 100644 --- a/routeros/resource_wireguard_keys_test.go +++ b/routeros/resource_wireguard_keys_test.go @@ -9,7 +9,7 @@ import ( const testResourceWireGuardKeys = "routeros_wireguard_keys.keys" func TestAccResourceWireGuardKeys_basic(t *testing.T) { - t.Parallel() + // t.Parallel() t.Run("WG keys", func(t *testing.T) { resource.Test(t, resource.TestCase{ ProviderFactories: testAccProviderFactories,