Skip to content

Commit 3c7c9b9

Browse files
committed
Updated tox paths
Signed-off-by: Andrea Zoppi <texzk@email.it>
1 parent 3b2e3a2 commit 3c7c9b9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ basepython =
3131
pypy3: {env:TOXPYTHON:pypy3}
3232

3333
setenv =
34-
PYTHONPATH={toxinidir}/tests
34+
PYTHONPATH={toxinidir}{/}tests
3535
PYTHONUNBUFFERED=yes
3636

3737
passenv =
@@ -50,15 +50,15 @@ commands =
5050
; Run this environment to check spelling within documentation.
5151
[testenv:spell]
5252
deps =
53-
-r{toxinidir}/docs/requirements.txt
53+
-r{toxinidir}{/}docs{/}requirements.txt
5454
pyenchant
5555
sphinxcontrib-spelling
5656

5757
setenv =
5858
SPELLCHECK=1
5959

6060
commands =
61-
sphinx-build -b spelling docs dist/docs
61+
sphinx-build -b spelling docs dist{/}docs
6262

6363
skip_install = true
6464

@@ -67,11 +67,11 @@ skip_install = true
6767
; NOTE: Files under _autosummary may not be regererated, delete manually before execution!
6868
[testenv:docs]
6969
deps =
70-
-r{toxinidir}/docs/requirements.txt
70+
-r{toxinidir}{/}docs{/}requirements.txt
7171

7272
commands =
73-
sphinx-build {posargs:-E} -b html docs dist/docs
74-
sphinx-build -b linkcheck docs dist/docs
73+
sphinx-build {posargs:-E} -b html docs dist{/}docs
74+
sphinx-build -b linkcheck docs dist{/}docs
7575

7676

7777
; Run this environment to check the code base consistency.
@@ -89,7 +89,7 @@ skip_install = true
8989

9090
commands =
9191
python setup.py sdist
92-
twine check dist/bytesparse-*
92+
twine check dist{/}bytesparse-*
9393
check-manifest {toxinidir}
9494
flake8 src setup.py
9595
isort --verbose --check-only --diff src tests setup.py

0 commit comments

Comments
 (0)