1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-02-21 07:56:09 +02:00

Merge remote-tracking branch 'origin/edt-2023-3' into G5V8DT-24189

This commit is contained in:
Dzyuba Maksim 2023-11-13 19:41:55 +03:00
commit d2d3adb358
6 changed files with 12 additions and 2 deletions

4
.gitignore vendored
View File

@ -11,4 +11,6 @@ target/
*/reports
#Mac-specific directory that no other operating system needs.
.DS_Store
.m2/
.m2/
org.sonarlint.eclipse.core.prefs

View File

@ -32,7 +32,7 @@ Import-Package: com._1c.g5.v8.bm.core;version="[8.0.0,9.0.0)",
com._1c.g5.v8.dt.bsl.typesystem;version="[10.0.0,11.0.0)",
com._1c.g5.v8.dt.bsl.typesystem.util;version="[10.0.0,11.0.0)",
com._1c.g5.v8.dt.bsl.util;version="[8.0.0,9.0.0)",
com._1c.g5.v8.dt.bsl.validation;version="[17.0.0,18.0.0)",
com._1c.g5.v8.dt.bsl.validation;version="[18.0.0,19.0.0)",
com._1c.g5.v8.dt.common;version="[6.0.0,7.0.0)",
com._1c.g5.v8.dt.core.naming;version="[7.0.0,8.0.0)",
com._1c.g5.v8.dt.core.platform;version="[11.0.0,12.0.0)",

View File

@ -19,6 +19,7 @@ import java.util.List;
import java.util.stream.Collectors;
import org.eclipse.core.runtime.Path;
import org.junit.Ignore;
import org.junit.Test;
import com._1c.g5.v8.dt.validation.marker.IExtraInfoKeys;
@ -73,6 +74,7 @@ public class ServerExecutionSafeModeCheckTest
* @throws Exception
*/
@Test
@Ignore("https://github.com/1C-Company/v8-code-style/issues/1377")
public void testCommonModuleServerCall() throws Exception
{
List<Marker> markers = getMarkers(COMMON_MODULE_SERVER_CALL_FILE_NAME);

View File

@ -18,6 +18,7 @@ import static org.junit.Assert.assertTrue;
import java.text.MessageFormat;
import java.util.List;
import org.junit.Ignore;
import org.junit.Test;
import com._1c.g5.v8.dt.validation.marker.IExtraInfoKeys;
@ -62,6 +63,7 @@ public class ExportProcedureCommentDescriptionCheckTest
* @throws Exception the exception
*/
@Test
@Ignore("https://github.com/1C-Company/v8-code-style/issues/1377")
public void testFunctionHasNoDescriptionSection() throws Exception
{
updateModule(FOLDER_RESOURCE + "doc-comment-export-function-no-description-section.bsl");

View File

@ -18,6 +18,7 @@ import java.util.List;
import java.util.Set;
import java.util.stream.Collectors;
import org.junit.Ignore;
import org.junit.Test;
import com._1c.g5.v8.dt.validation.marker.IExtraInfoKeys;
@ -66,6 +67,7 @@ public class RefLinkPartCheckTest
* @throws Exception the exception
*/
@Test
@Ignore("https://github.com/1C-Company/v8-code-style/issues/1376")
public void testInvalidLinks() throws Exception
{
updateModule(FOLDER_RESOURCE + "doc-comment-ref-link.bsl");

View File

@ -16,6 +16,7 @@ import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import org.eclipse.core.runtime.IProgressMonitor;
import org.junit.Ignore;
import org.junit.Test;
import com._1c.g5.v8.bm.core.IBmTransaction;
@ -58,6 +59,7 @@ public class ConfigurationDataLockTest
}
@Test
@Ignore("https://github.com/1C-Company/v8-code-style/issues/1375")
public void testManagedDataLockMode() throws Exception
{
IDtProject dtProject = openProjectAndWaitForValidationFinish(PROJECT_NAME);