From 44664bdd1b325e01dcec6843262571bf942bf44d Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 5 Jan 2018 15:34:22 +0100 Subject: [PATCH] move files from _config to _gen --- _gen/doxygen.bat | 2 +- {_config => _gen}/doxygen.ini | 0 _gen/pytest.bat | 4 ++-- {_config => _gen}/pytest.ini | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {_config => _gen}/doxygen.ini (100%) rename {_config => _gen}/pytest.ini (100%) diff --git a/_gen/doxygen.bat b/_gen/doxygen.bat index d82e895..497b962 100644 --- a/_gen/doxygen.bat +++ b/_gen/doxygen.bat @@ -13,7 +13,7 @@ echo. echo Build Doxygen Documentation echo. cd .. -_bin\win\doxygen\doxygen.exe "_config\doxygen.ini" +_bin\win\doxygen\doxygen.exe _gen/doxygen.ini echo. echo. pause \ No newline at end of file diff --git a/_config/doxygen.ini b/_gen/doxygen.ini similarity index 100% rename from _config/doxygen.ini rename to _gen/doxygen.ini diff --git a/_gen/pytest.bat b/_gen/pytest.bat index c273a42..600f8c0 100644 --- a/_gen/pytest.bat +++ b/_gen/pytest.bat @@ -28,7 +28,7 @@ if "%test%" == "" ( :start echo. -python -m pytest -c "_config/pytest.ini" -v --pep8 --cov --cov-report=term-missing +python -m pytest -c "_gen/pytest.ini" -v --pep8 --cov --cov-report=term-missing echo. echo --- Hit any key to repeat --- pause @@ -37,7 +37,7 @@ goto start :start_spec echo. -python -m pytest test/test_%test%.py -c "_config/pytest.ini" -v --pep8 --cov --cov-report=term-missing +python -m pytest test/test_%test%.py -c "_gen/pytest.ini" -v --pep8 --cov --cov-report=term-missing echo. echo --- Hit any key to repeat --- pause diff --git a/_config/pytest.ini b/_gen/pytest.ini similarity index 100% rename from _config/pytest.ini rename to _gen/pytest.ini