Skip to content

Commit

Permalink
Update tox.ini to handle spaces in paths (#1099)
Browse files Browse the repository at this point in the history
Tox doesn't handle spaces in paths well.  Adding single quotes around the path variables in the tox.ini fixes this.
  • Loading branch information
kelle authored Nov 15, 2023
1 parent 8707443 commit 8d76731
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ commands =
# Force numpy-dev after matplotlib downgrades it (https://github.com/matplotlib/matplotlib/issues/26847)
devdeps: python -m pip install --pre --upgrade --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
pip freeze
!cov: pytest --pyargs specutils {toxinidir}/docs {posargs}
cov: pytest --pyargs specutils {toxinidir}/docs --cov specutils --cov-config={toxinidir}/setup.cfg {posargs}
cov: coverage xml -o {toxinidir}/coverage.xml
!cov: pytest --pyargs specutils '{toxinidir}/docs' {posargs}
cov: pytest --pyargs specutils '{toxinidir}/docs' --cov specutils --cov-config='{toxinidir}/setup.cfg' {posargs}
cov: coverage xml -o '{toxinidir}/coverage.xml'

pip_pre =
predeps: true
Expand Down

0 comments on commit 8d76731

Please sign in to comment.