Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion kiwi_lint/empty.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2018,2023 Alexander Todorov <atodorov@MrSenko.com>
# Copyright (c) 2018,2023,2026 Alexander Todorov <atodorov@otb.bg>

# Licensed under the GPL 2.0: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

Expand Down Expand Up @@ -59,6 +59,10 @@ def open(self):
if root.find("migrations") > -1:
continue

# skip python files shipped in Node.js packages
if root.find("tcms/node_modules") > -1:
continue

for file_name in files:
if file_name.endswith(".py"):
self.all_python_files.add(
Expand Down
3 changes: 2 additions & 1 deletion requirements/readthedocs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ factory_boy
mock
pydot
# linting tools
pylint-django==2.6.1
pylint==3.3.9
pylint-django==2.7.0
twine
pyOpenSSL
2 changes: 1 addition & 1 deletion tcms/management/migrations/0003_squashed.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.2 on 2018-10-24 21:07
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.0.2 on 2020-01-09 20:05
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models
Expand Down
28 changes: 14 additions & 14 deletions tcms/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tcms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"html5sortable": "0.14.0",
"jszip": "3.10.1",
"patternfly": "3.59.5",
"pdfmake": "0.3.4",
"pdfmake": "0.3.6",
"simplemde": "1.11.2",
"typeahead.js": "0.11.1"
},
Expand All @@ -24,6 +24,6 @@
"eslint-plugin-n": "16.6.2",
"eslint-plugin-node": "11.1.0",
"webpack": "5.105.4",
"webpack-cli": "7.0.0"
"webpack-cli": "7.0.1"
}
}
3 changes: 2 additions & 1 deletion tcms/testcases/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.0.2 on 2020-01-09 20:05
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models
Expand Down
2 changes: 1 addition & 1 deletion tcms/testplans/migrations/0005_squashed.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.2 on 2018-10-22 19:59
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models
Expand Down
2 changes: 1 addition & 1 deletion tcms/testruns/migrations/0004_squashed.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.1.2 on 2018-10-22 19:11
# pylint: disable=invalid-name

from django.conf import settings
from django.db import migrations, models
Expand Down
Loading