From c3e59f1ac36623beebbdd7a82e4ef20c9b47a766 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 30 Aug 2021 08:56:13 +0300 Subject: [PATCH] Tests(tox): Use `%TEMP%` for sqlite on w32 --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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] -- 2.39.2