From dd4679e659d89ff3573157548398f5615a818693 Mon Sep 17 00:00:00 2001 From: Shachar Sharon Date: Wed, 27 Sep 2023 12:18:16 +0300 Subject: [PATCH] tox: consistent indent spacing Python uses 4-space for indentation. Follow same convention in tox.ini configuration file. Signed-off-by: Shachar Sharon --- tox.ini | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tox.ini b/tox.ini index 4c40ae7..d15ec96 100644 --- a/tox.ini +++ b/tox.ini @@ -6,23 +6,23 @@ isolated_build = True [testenv] minversion = 3.9 passenv = - TEST_INFO_FILE - PYTHONPATH + TEST_INFO_FILE + PYTHONPATH deps = pytest commands = py.test -v . [testenv:pytest] deps = - pytest - pyyaml - pytest-randomly + pytest + pyyaml + pytest-randomly commands = pytest -v testcases/mount testcases/consistency testcases/smbtorture [testenv:sanity] deps = - pytest - pyyaml - pytest-randomly + pytest + pyyaml + pytest-randomly changedir = {toxinidir} commands = pytest -v testcases/consistency