From 4e7b38224ccdb32f0ecbc0b188b561cfa70ea8d4 Mon Sep 17 00:00:00 2001 From: Maria Grimaldi Date: Thu, 28 Mar 2024 15:34:43 -0400 Subject: [PATCH] refactor: remove extra blank spaces --- tox.ini | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tox.ini b/tox.ini index b94cc537..73bf1132 100644 --- a/tox.ini +++ b/tox.ini @@ -18,23 +18,23 @@ addopts = --cov openedx_events --cov-report term-missing --cov-report xml norecursedirs = .* docs requirements site-packages [testenv] -deps = +deps = -r{toxinidir}/requirements/test.txt -commands = +commands = pytest openedx_events tests [testenv:docs] -setenv = +setenv = PYTHONPATH = {toxinidir} # Adding the option here instead of as a default in the docs Makefile because that Makefile is generated by shpinx. SPHINXOPTS = -W -allowlist_externals = +allowlist_externals = make rm twine -deps = +deps = -r{toxinidir}/requirements/doc.txt -commands = +commands = doc8 --ignore-path docs/_build README.rst docs rm -f docs/openedx_events.rst rm -f docs/modules.rst @@ -44,20 +44,20 @@ commands = twine check dist/* [testenv:quality] -allowlist_externals = +allowlist_externals = make rm touch -deps = +deps = -r{toxinidir}/requirements/quality.txt -commands = +commands = make quality [testenv:pii_check] -setenv = +setenv = DJANGO_SETTINGS_MODULE = test_utils.test_settings -deps = +deps = -r{toxinidir}/requirements/test.txt -commands = +commands = code_annotations django_find_annotations --config_file .pii_annotations.yml --lint --report --coverage