Skip to content

Commit d8e03fc

Browse files
committed
(FIX) tox python 3.5 errors
1 parent fce5f72 commit d8e03fc

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests/test_conf.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,5 @@ def test_lang_code_duplicates_validation(self):
5353

5454
@override_settings(MODELTRANS_AVAILABLE_LANGUAGES=("nl", "bg", "ar"), LANGUAGE_CODE="en")
5555
def test_languages_ordering(self):
56-
"""
57-
Test.
58-
"""
5956
self.assertEqual(("en", "nl", "bg", "ar"), get_available_languages())
6057
self.assertEqual(("nl", "bg", "ar"), get_available_languages(include_default=False))

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ basepython =
2323

2424
# workaround for Error installing '...django-tables2': editable mode is not supported for pyproject.toml-style projects.
2525
# https://github.com/pypa/pip/issues/6434
26-
install_command = python -m pip install --no-use-pep517 {opts} {packages}
26+
# install_command = python -m pip install --no-use-pep517 {opts} {packages}
2727

2828
usedevelop = true
2929
pip_pre = true

0 commit comments

Comments
 (0)