From: Oleg Broytman Date: Mon, 30 Aug 2021 05:56:13 +0000 (+0300) Subject: Tests(tox): Use `%TEMP%` for sqlite on w32 X-Git-Tag: 0.1.6~9^2~1 X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=c3e59f1ac36623beebbdd7a82e4ef20c9b47a766;hp=a70c4953b22b0495b09ccf843d6f507e6837f943;p=m_librarian.git Tests(tox): Use `%TEMP%` for sqlite on w32 --- diff --git a/tox.ini b/tox.ini index eb7797c..14f1c19 100644 --- a/tox.ini +++ b/tox.ini @@ -34,9 +34,9 @@ commands = platform = win32 commands = {[testenv]commands} - -rm.py -f C:/projects/m-librarian/test.sqdb - pytest --cov=m_librarian -D sqlite:/C:/projects/m-librarian/test.sqdb?debug=1 - rm.py -f C:/projects/m-librarian/test.sqdb + -rm.py -f {env:TEMP}/test.sqdb + pytest --cov=m_librarian -D sqlite:/{env:TEMP}/test.sqdb?debug=1 + rm.py -f {env:TEMP}/test.sqdb # flake8 [testenv:{py27,py34,py35,py36,py37,py38,py39}-flake8]