You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by av...@apache.org on 2021/02/17 07:59:21 UTC

[ignite] branch ignite-ducktape updated: IGNITE-14192: added modules/ducktests/tests/certs to .gitignore (#8804)

This is an automated email from the ASF dual-hosted git repository.

av pushed a commit to branch ignite-ducktape
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/ignite-ducktape by this push:
     new 07f1b5f  IGNITE-14192: added modules/ducktests/tests/certs to .gitignore (#8804)
07f1b5f is described below

commit 07f1b5fb9f427ae52785c9cb990f416ccd9afb98
Author: Sergei Ryzhov <s....@gmail.com>
AuthorDate: Wed Feb 17 10:59:01 2021 +0300

    IGNITE-14192: added modules/ducktests/tests/certs to .gitignore (#8804)
---
 .gitignore                                                       | 1 +
 modules/ducktests/tests/checks/utils/check_enum_constructible.py | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
index 0029600..804707e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -94,3 +94,4 @@ packages
 /tests/venv
 modules/ducktests/tests/docker/build/**
 modules/ducktests/tests/.tox
+modules/ducktests/tests/certs/*
diff --git a/modules/ducktests/tests/checks/utils/check_enum_constructible.py b/modules/ducktests/tests/checks/utils/check_enum_constructible.py
index 3c6781e..9f0dee0 100644
--- a/modules/ducktests/tests/checks/utils/check_enum_constructible.py
+++ b/modules/ducktests/tests/checks/utils/check_enum_constructible.py
@@ -34,6 +34,7 @@ class ConnectType(IntEnum):
 
 
 check_params = []
+# pylint: disable=E1101
 for name, value in ConnectType.__members__.items():
     check_params.append([name, value])
     check_params.append([int(value), value])