Skip to content

Commit

Permalink
More fiddling to get packaging working to allow CI to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Mar 25, 2022
1 parent ccb1a32 commit f4cf22a
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ include *.md
include *.rst
include LICENSE
include pylint_django/transforms/transforms/*.py
include pylint_django/tests/testing_pylintrc
include pylint_django/tests/test_django_not_installed
recursive-include pylint_django/tests/ *.py *.rc *.txt
File renamed without changes.
2 changes: 1 addition & 1 deletion pylint_django/tests/test_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class test_dialect(csv.excel):

csv.register_dialect("test", test_dialect)

lint_module_test.PYLINTRC = HERE / "testing_pylintrc"
lint_module_test.PYLINTRC = HERE / "testing_pylint.rc"
except (ImportError, AttributeError):
# specify directly the directory containing test_functional.py
test_functional_dir = os.getenv("PYLINT_TEST_FUNCTIONAL_DIR", "")
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ requires =

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

0 comments on commit f4cf22a

Please sign in to comment.