Skip to content

Commit f4cf22a

Browse files
committed
More fiddling to get packaging working to allow CI to pass
1 parent ccb1a32 commit f4cf22a

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ include *.md
22
include *.rst
33
include LICENSE
44
include pylint_django/transforms/transforms/*.py
5-
include pylint_django/tests/testing_pylintrc
5+
include pylint_django/tests/test_django_not_installed
66
recursive-include pylint_django/tests/ *.py *.rc *.txt

pylint_django/tests/test_func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class test_dialect(csv.excel):
2323

2424
csv.register_dialect("test", test_dialect)
2525

26-
lint_module_test.PYLINTRC = HERE / "testing_pylintrc"
26+
lint_module_test.PYLINTRC = HERE / "testing_pylint.rc"
2727
except (ImportError, AttributeError):
2828
# specify directly the directory containing test_functional.py
2929
test_functional_dir = os.getenv("PYLINT_TEST_FUNCTIONAL_DIR", "")

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ requires =
1818

1919
[testenv]
2020
commands =
21-
django_not_installed: bash scripts/test_django_not_installed.sh
21+
django_not_installed: bash pylint_django/tests/test_django_not_installed.sh
2222
django_is_installed: pylint --rcfile=tox.ini --load-plugins=pylint_django --disable=E5110 setup.py
2323
flake8: flake8
2424
pylint: pylint --rcfile=tox.ini -d missing-docstring,too-many-branches,too-many-return-statements,too-many-ancestors,fixme --ignore=tests pylint_django setup

0 commit comments

Comments
 (0)