Skip to content

Commit f4fafa2

Browse files
committed
pytest: moved conftest.py to project root
1 parent a677a64 commit f4fafa2

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

.vscode/settings.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
"-v",
3636
"--cov",
3737
"--cov-report=html",
38-
"qwt"
3938
],
4039
"python.analysis.autoFormatStrings": true,
4140
"editor.defaultFoldingRangeProvider": "ms-python.black-formatter",
File renamed without changes.

scripts/run_coverage.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ call %~dp0utils GetScriptPath SCRIPTPATH
1111
call %FUNC% SetPythonPath
1212
call %FUNC% UsePython
1313
set COVERAGE_PROCESS_START=%SCRIPTPATH%\..\.coveragerc
14-
pytest -v --cov --cov-report=html %MODNAME%
14+
pytest -v --cov --cov-report=html
1515
start htmlcov\index.html
1616
call %FUNC% EndOfScript

scripts/run_pytest.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ for /D %%d in ("%DIR0%*") do (
1919
set WINPYDIRBASE=%%d
2020
call !WINPYDIRBASE!\scripts\env.bat
2121
echo Running pytest from "%%d":
22-
pytest --ff -q %MODNAME%
22+
pytest --ff -q
2323
echo ----
2424
)
2525
call %FUNC% EndOfScript

0 commit comments

Comments
 (0)