Skip to content

Commit 06abcce

Browse files
committed
Move scripts into script folder
1 parent a91fa05 commit 06abcce

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

doc/contributing.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To avoid any discussion about formatting `black <https://github.com/psf/black>`_
4949
Next to that `isort <https://github.com/PyCQA/isort>`_ is used for sorting the imports.
5050
And `doc8 <https://github.com/pycqa/doc8>`_ is used as rst linter.
5151

52-
Run `check_quality.bat` (or GitHub will run it for you). Alternatively when using VSCode run the `Check Quality` task from the command palette.
52+
Run ``script/check_quality.bat`` (or GitHub will run it for you). Alternatively when using VSCode run the `Check Quality` task from the command palette.
5353

5454
Testing
5555
-------
@@ -88,7 +88,7 @@ and add run the ``Feature tests (wip)`` debug configuration in VSCode.
8888

8989
Creating documentation
9090
----------------------
91-
Run ``create_docs.bat`` and open ``index.html`` in ``doc/_build/html`` to read it.
91+
Run ``script/create_docs.bat`` and open ``index.html`` in ``doc/_build/html`` to read it.
9292
See `This example <https://pythonhosted.org/an_example_pypi_project/sphinx.html>`_ for documenting the code.
9393
Alternatively in VSCode run the ``Create Docs`` task from the command palette.
9494

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ setlocal enabledelayedexpansion
33

44
cd %~dp0
55

6-
py script/create_venv.py --extra_requirements "development"
6+
py create_venv.py --extra_requirements "development"
77
if not !ERRORLEVEL! == 0 echo "Something went wrong creating the venv." && exit /b !ERRORLEVEL!
88

9-
call .\venv\Scripts\activate.bat
9+
call ..\venv\Scripts\activate.bat
1010
pre-commit run
1111

1212
pause

create_docs.bat renamed to script/create_docs.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ setlocal enabledelayedexpansion
33

44
cd %~dp0
55

6-
py script/create_venv.py --extra_requirements "docs"
6+
py create_venv.py --extra_requirements "docs"
77
if not !ERRORLEVEL! == 0 echo "Something went wrong creating the venv." && exit /b !ERRORLEVEL!
88

9-
call .\venv\Scripts\activate.bat
10-
.\doc\make.bat html
9+
call ..\venv\Scripts\activate.bat
10+
..\doc\make.bat html

0 commit comments

Comments
 (0)