Skip to content

Commit

Permalink
tox: consistent indent spacing
Browse files Browse the repository at this point in the history
Python uses 4-space for indentation. Follow same convention in tox.ini
configuration file.

Signed-off-by: Shachar Sharon <ssharon@ibm.com>
  • Loading branch information
Shachar Sharon committed Sep 27, 2023
1 parent ad4988b commit dd4679e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit dd4679e

Please sign in to comment.