Skip to content

Commit

Permalink
test: fix qa warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Alec4r committed Jul 7, 2024
1 parent f98ff3b commit 7f49284
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
16 changes: 0 additions & 16 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@

[MASTER]
ignore = migrations, templates
persistent = yes

[MESSAGES CONTROL]
disable =
locally-disabled,
locally-enabled,
too-few-public-methods,
bad-builtin,
star-args,
abstract-class-not-used,
abstract-class-little-used,
no-init,
fixme,
logging-format-interpolation,
too-many-lines,
no-self-use,
too-many-ancestors,
too-many-instance-attributes,
too-few-public-methods,
Expand All @@ -29,7 +20,6 @@ disable =

[REPORTS]
output-format = text
files-output = no
reports = no
evaluation = 10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)

Expand All @@ -54,7 +44,6 @@ docstring-min-length = -1
max-line-length = 120
ignore-long-lines = ^\s*(# )?<?https?://\S+>?$
single-line-if-stmt = no
no-space-check = trailing-comma,dict-separator
max-module-lines = 1000
indent-string = ' '

Expand Down Expand Up @@ -118,11 +107,6 @@ max-public-methods = 20

[IMPORTS]
deprecated-modules = regsub,TERMIOS,Bastion,rexec
import-graph =
ext-import-graph =
int-import-graph =

[EXCEPTIONS]
overgeneral-exceptions = Exception

# 1a67033d4799199101eddf63b8ed0bef3e61bda7
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def create_active_script(self, context: dict) -> None:
def create_project(self, project_name: ProjectName) -> None:
"""Duplicate the version directory and rename it."""
project_path = os.path.join(TVM_PATH, project_name)

if not os.path.exists(project_path):
tutor_version = project_name.split("@")[0]
tutor_version_folder = os.path.join(TVM_PATH, tutor_version)
Expand Down

0 comments on commit 7f49284

Please sign in to comment.